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 | |
| 19 | #include <linux/errno.h> |
| 20 | #include <linux/err.h> |
| 21 | #include <linux/kvm_host.h> |
| 22 | #include <linux/module.h> |
| 23 | #include <linux/vmalloc.h> |
| 24 | #include <linux/fs.h> |
| 25 | #include <linux/mman.h> |
| 26 | #include <linux/sched.h> |
Christoffer Dall | 86ce853 | 2013-01-20 18:28:08 -0500 | [diff] [blame] | 27 | #include <linux/kvm.h> |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 28 | #include <trace/events/kvm.h> |
| 29 | |
| 30 | #define CREATE_TRACE_POINTS |
| 31 | #include "trace.h" |
| 32 | |
| 33 | #include <asm/unified.h> |
| 34 | #include <asm/uaccess.h> |
| 35 | #include <asm/ptrace.h> |
| 36 | #include <asm/mman.h> |
| 37 | #include <asm/cputype.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 | aa024c2 | 2013-01-20 18:28:13 -0500 | [diff] [blame] | 46 | #include <asm/kvm_psci.h> |
Christoffer Dall | 5b3e5e5 | 2013-01-20 18:28:09 -0500 | [diff] [blame] | 47 | #include <asm/opcodes.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); |
| 54 | static struct vfp_hard_struct __percpu *kvm_host_vfp_state; |
| 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); |
| 62 | static u8 kvm_next_vmid; |
| 63 | static DEFINE_SPINLOCK(kvm_vmid_lock); |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 64 | |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 65 | static bool vgic_present; |
| 66 | |
Marc Zyngier | 1638a12 | 2013-01-21 19:36:11 -0500 | [diff] [blame] | 67 | static void kvm_arm_set_running_vcpu(struct kvm_vcpu *vcpu) |
| 68 | { |
| 69 | BUG_ON(preemptible()); |
| 70 | __get_cpu_var(kvm_arm_running_vcpu) = vcpu; |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * kvm_arm_get_running_vcpu - get the vcpu running on the current CPU. |
| 75 | * Must be called from non-preemptible context |
| 76 | */ |
| 77 | struct kvm_vcpu *kvm_arm_get_running_vcpu(void) |
| 78 | { |
| 79 | BUG_ON(preemptible()); |
| 80 | return __get_cpu_var(kvm_arm_running_vcpu); |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * kvm_arm_get_running_vcpus - get the per-CPU array of currently running vcpus. |
| 85 | */ |
| 86 | struct kvm_vcpu __percpu **kvm_get_running_vcpus(void) |
| 87 | { |
| 88 | return &kvm_arm_running_vcpu; |
| 89 | } |
| 90 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 91 | int kvm_arch_hardware_enable(void *garbage) |
| 92 | { |
| 93 | return 0; |
| 94 | } |
| 95 | |
| 96 | int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu) |
| 97 | { |
| 98 | return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE; |
| 99 | } |
| 100 | |
| 101 | void kvm_arch_hardware_disable(void *garbage) |
| 102 | { |
| 103 | } |
| 104 | |
| 105 | int kvm_arch_hardware_setup(void) |
| 106 | { |
| 107 | return 0; |
| 108 | } |
| 109 | |
| 110 | void kvm_arch_hardware_unsetup(void) |
| 111 | { |
| 112 | } |
| 113 | |
| 114 | void kvm_arch_check_processor_compat(void *rtn) |
| 115 | { |
| 116 | *(int *)rtn = 0; |
| 117 | } |
| 118 | |
| 119 | void kvm_arch_sync_events(struct kvm *kvm) |
| 120 | { |
| 121 | } |
| 122 | |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 123 | /** |
| 124 | * kvm_arch_init_vm - initializes a VM data structure |
| 125 | * @kvm: pointer to the KVM struct |
| 126 | */ |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 127 | int kvm_arch_init_vm(struct kvm *kvm, unsigned long type) |
| 128 | { |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 129 | int ret = 0; |
| 130 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 131 | if (type) |
| 132 | return -EINVAL; |
| 133 | |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 134 | ret = kvm_alloc_stage2_pgd(kvm); |
| 135 | if (ret) |
| 136 | goto out_fail_alloc; |
| 137 | |
| 138 | ret = create_hyp_mappings(kvm, kvm + 1); |
| 139 | if (ret) |
| 140 | goto out_free_stage2_pgd; |
| 141 | |
| 142 | /* Mark the initial VMID generation invalid */ |
| 143 | kvm->arch.vmid_gen = 0; |
| 144 | |
| 145 | return ret; |
| 146 | out_free_stage2_pgd: |
| 147 | kvm_free_stage2_pgd(kvm); |
| 148 | out_fail_alloc: |
| 149 | return ret; |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf) |
| 153 | { |
| 154 | return VM_FAULT_SIGBUS; |
| 155 | } |
| 156 | |
| 157 | void kvm_arch_free_memslot(struct kvm_memory_slot *free, |
| 158 | struct kvm_memory_slot *dont) |
| 159 | { |
| 160 | } |
| 161 | |
| 162 | int kvm_arch_create_memslot(struct kvm_memory_slot *slot, unsigned long npages) |
| 163 | { |
| 164 | return 0; |
| 165 | } |
| 166 | |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 167 | /** |
| 168 | * kvm_arch_destroy_vm - destroy the VM data structure |
| 169 | * @kvm: pointer to the KVM struct |
| 170 | */ |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 171 | void kvm_arch_destroy_vm(struct kvm *kvm) |
| 172 | { |
| 173 | int i; |
| 174 | |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 175 | kvm_free_stage2_pgd(kvm); |
| 176 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 177 | for (i = 0; i < KVM_MAX_VCPUS; ++i) { |
| 178 | if (kvm->vcpus[i]) { |
| 179 | kvm_arch_vcpu_free(kvm->vcpus[i]); |
| 180 | kvm->vcpus[i] = NULL; |
| 181 | } |
| 182 | } |
| 183 | } |
| 184 | |
| 185 | int kvm_dev_ioctl_check_extension(long ext) |
| 186 | { |
| 187 | int r; |
| 188 | switch (ext) { |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 189 | case KVM_CAP_IRQCHIP: |
| 190 | r = vgic_present; |
| 191 | break; |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 192 | case KVM_CAP_USER_MEMORY: |
| 193 | case KVM_CAP_SYNC_MMU: |
| 194 | case KVM_CAP_DESTROY_MEMORY_REGION_WORKS: |
| 195 | case KVM_CAP_ONE_REG: |
Marc Zyngier | aa024c2 | 2013-01-20 18:28:13 -0500 | [diff] [blame] | 196 | case KVM_CAP_ARM_PSCI: |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 197 | r = 1; |
| 198 | break; |
| 199 | case KVM_CAP_COALESCED_MMIO: |
| 200 | r = KVM_COALESCED_MMIO_PAGE_OFFSET; |
| 201 | break; |
Christoffer Dall | 3401d546 | 2013-01-23 13:18:04 -0500 | [diff] [blame] | 202 | case KVM_CAP_ARM_SET_DEVICE_ADDR: |
| 203 | r = 1; |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 204 | case KVM_CAP_NR_VCPUS: |
| 205 | r = num_online_cpus(); |
| 206 | break; |
| 207 | case KVM_CAP_MAX_VCPUS: |
| 208 | r = KVM_MAX_VCPUS; |
| 209 | break; |
| 210 | default: |
| 211 | r = 0; |
| 212 | break; |
| 213 | } |
| 214 | return r; |
| 215 | } |
| 216 | |
| 217 | long kvm_arch_dev_ioctl(struct file *filp, |
| 218 | unsigned int ioctl, unsigned long arg) |
| 219 | { |
| 220 | return -EINVAL; |
| 221 | } |
| 222 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 223 | int kvm_arch_prepare_memory_region(struct kvm *kvm, |
| 224 | struct kvm_memory_slot *memslot, |
Takuya Yoshikawa | 7b6195a | 2013-02-27 19:44:34 +0900 | [diff] [blame] | 225 | struct kvm_userspace_memory_region *mem, |
| 226 | enum kvm_mr_change change) |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 227 | { |
| 228 | return 0; |
| 229 | } |
| 230 | |
| 231 | void kvm_arch_commit_memory_region(struct kvm *kvm, |
| 232 | struct kvm_userspace_memory_region *mem, |
Takuya Yoshikawa | 8482644 | 2013-02-27 19:45:25 +0900 | [diff] [blame] | 233 | const struct kvm_memory_slot *old, |
| 234 | enum kvm_mr_change change) |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 235 | { |
| 236 | } |
| 237 | |
| 238 | void kvm_arch_flush_shadow_all(struct kvm *kvm) |
| 239 | { |
| 240 | } |
| 241 | |
| 242 | void kvm_arch_flush_shadow_memslot(struct kvm *kvm, |
| 243 | struct kvm_memory_slot *slot) |
| 244 | { |
| 245 | } |
| 246 | |
| 247 | struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id) |
| 248 | { |
| 249 | int err; |
| 250 | struct kvm_vcpu *vcpu; |
| 251 | |
| 252 | vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL); |
| 253 | if (!vcpu) { |
| 254 | err = -ENOMEM; |
| 255 | goto out; |
| 256 | } |
| 257 | |
| 258 | err = kvm_vcpu_init(vcpu, kvm, id); |
| 259 | if (err) |
| 260 | goto free_vcpu; |
| 261 | |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 262 | err = create_hyp_mappings(vcpu, vcpu + 1); |
| 263 | if (err) |
| 264 | goto vcpu_uninit; |
| 265 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 266 | return vcpu; |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 267 | vcpu_uninit: |
| 268 | kvm_vcpu_uninit(vcpu); |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 269 | free_vcpu: |
| 270 | kmem_cache_free(kvm_vcpu_cache, vcpu); |
| 271 | out: |
| 272 | return ERR_PTR(err); |
| 273 | } |
| 274 | |
| 275 | int kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu) |
| 276 | { |
| 277 | return 0; |
| 278 | } |
| 279 | |
| 280 | void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu) |
| 281 | { |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 282 | kvm_mmu_free_memory_caches(vcpu); |
Marc Zyngier | 967f842 | 2013-01-23 13:21:59 -0500 | [diff] [blame] | 283 | kvm_timer_vcpu_terminate(vcpu); |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 284 | kmem_cache_free(kvm_vcpu_cache, vcpu); |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 285 | } |
| 286 | |
| 287 | void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu) |
| 288 | { |
| 289 | kvm_arch_vcpu_free(vcpu); |
| 290 | } |
| 291 | |
| 292 | int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu) |
| 293 | { |
| 294 | return 0; |
| 295 | } |
| 296 | |
| 297 | int __attribute_const__ kvm_target_cpu(void) |
| 298 | { |
| 299 | unsigned long implementor = read_cpuid_implementor(); |
| 300 | unsigned long part_number = read_cpuid_part_number(); |
| 301 | |
| 302 | if (implementor != ARM_CPU_IMP_ARM) |
| 303 | return -EINVAL; |
| 304 | |
| 305 | switch (part_number) { |
| 306 | case ARM_CPU_PART_CORTEX_A15: |
| 307 | return KVM_ARM_TARGET_CORTEX_A15; |
| 308 | default: |
| 309 | return -EINVAL; |
| 310 | } |
| 311 | } |
| 312 | |
| 313 | int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu) |
| 314 | { |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 315 | int ret; |
| 316 | |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 317 | /* Force users to call KVM_ARM_VCPU_INIT */ |
| 318 | vcpu->arch.target = -1; |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 319 | |
| 320 | /* Set up VGIC */ |
| 321 | ret = kvm_vgic_vcpu_init(vcpu); |
| 322 | if (ret) |
| 323 | return ret; |
| 324 | |
Marc Zyngier | 967f842 | 2013-01-23 13:21:59 -0500 | [diff] [blame] | 325 | /* Set up the timer */ |
| 326 | kvm_timer_vcpu_init(vcpu); |
| 327 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 328 | return 0; |
| 329 | } |
| 330 | |
| 331 | void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu) |
| 332 | { |
| 333 | } |
| 334 | |
| 335 | void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu) |
| 336 | { |
Christoffer Dall | 86ce853 | 2013-01-20 18:28:08 -0500 | [diff] [blame] | 337 | vcpu->cpu = cpu; |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 338 | vcpu->arch.vfp_host = this_cpu_ptr(kvm_host_vfp_state); |
Christoffer Dall | 5b3e5e5 | 2013-01-20 18:28:09 -0500 | [diff] [blame] | 339 | |
| 340 | /* |
| 341 | * Check whether this vcpu requires the cache to be flushed on |
| 342 | * this physical CPU. This is a consequence of doing dcache |
| 343 | * operations by set/way on this vcpu. We do it here to be in |
| 344 | * a non-preemptible section. |
| 345 | */ |
| 346 | if (cpumask_test_and_clear_cpu(cpu, &vcpu->arch.require_dcache_flush)) |
| 347 | flush_cache_all(); /* We'd really want v7_flush_dcache_all() */ |
Marc Zyngier | 1638a12 | 2013-01-21 19:36:11 -0500 | [diff] [blame] | 348 | |
| 349 | kvm_arm_set_running_vcpu(vcpu); |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 350 | } |
| 351 | |
| 352 | void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu) |
| 353 | { |
Marc Zyngier | 1638a12 | 2013-01-21 19:36:11 -0500 | [diff] [blame] | 354 | kvm_arm_set_running_vcpu(NULL); |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 355 | } |
| 356 | |
| 357 | int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu, |
| 358 | struct kvm_guest_debug *dbg) |
| 359 | { |
| 360 | return -EINVAL; |
| 361 | } |
| 362 | |
| 363 | |
| 364 | int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu, |
| 365 | struct kvm_mp_state *mp_state) |
| 366 | { |
| 367 | return -EINVAL; |
| 368 | } |
| 369 | |
| 370 | int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu, |
| 371 | struct kvm_mp_state *mp_state) |
| 372 | { |
| 373 | return -EINVAL; |
| 374 | } |
| 375 | |
Christoffer Dall | 5b3e5e5 | 2013-01-20 18:28:09 -0500 | [diff] [blame] | 376 | /** |
| 377 | * kvm_arch_vcpu_runnable - determine if the vcpu can be scheduled |
| 378 | * @v: The VCPU pointer |
| 379 | * |
| 380 | * If the guest CPU is not waiting for interrupts or an interrupt line is |
| 381 | * asserted, the CPU is by definition runnable. |
| 382 | */ |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 383 | int kvm_arch_vcpu_runnable(struct kvm_vcpu *v) |
| 384 | { |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 385 | return !!v->arch.irq_lines || kvm_vgic_vcpu_pending_irq(v); |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 386 | } |
| 387 | |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 388 | /* Just ensure a guest exit from a particular CPU */ |
| 389 | static void exit_vm_noop(void *info) |
| 390 | { |
| 391 | } |
| 392 | |
| 393 | void force_vm_exit(const cpumask_t *mask) |
| 394 | { |
| 395 | smp_call_function_many(mask, exit_vm_noop, NULL, true); |
| 396 | } |
| 397 | |
| 398 | /** |
| 399 | * need_new_vmid_gen - check that the VMID is still valid |
| 400 | * @kvm: The VM's VMID to checkt |
| 401 | * |
| 402 | * return true if there is a new generation of VMIDs being used |
| 403 | * |
| 404 | * The hardware supports only 256 values with the value zero reserved for the |
| 405 | * host, so we check if an assigned value belongs to a previous generation, |
| 406 | * which which requires us to assign a new value. If we're the first to use a |
| 407 | * VMID for the new generation, we must flush necessary caches and TLBs on all |
| 408 | * CPUs. |
| 409 | */ |
| 410 | static bool need_new_vmid_gen(struct kvm *kvm) |
| 411 | { |
| 412 | return unlikely(kvm->arch.vmid_gen != atomic64_read(&kvm_vmid_gen)); |
| 413 | } |
| 414 | |
| 415 | /** |
| 416 | * update_vttbr - Update the VTTBR with a valid VMID before the guest runs |
| 417 | * @kvm The guest that we are about to run |
| 418 | * |
| 419 | * Called from kvm_arch_vcpu_ioctl_run before entering the guest to ensure the |
| 420 | * VM has a valid VMID, otherwise assigns a new one and flushes corresponding |
| 421 | * caches and TLBs. |
| 422 | */ |
| 423 | static void update_vttbr(struct kvm *kvm) |
| 424 | { |
| 425 | phys_addr_t pgd_phys; |
| 426 | u64 vmid; |
| 427 | |
| 428 | if (!need_new_vmid_gen(kvm)) |
| 429 | return; |
| 430 | |
| 431 | spin_lock(&kvm_vmid_lock); |
| 432 | |
| 433 | /* |
| 434 | * We need to re-check the vmid_gen here to ensure that if another vcpu |
| 435 | * already allocated a valid vmid for this vm, then this vcpu should |
| 436 | * use the same vmid. |
| 437 | */ |
| 438 | if (!need_new_vmid_gen(kvm)) { |
| 439 | spin_unlock(&kvm_vmid_lock); |
| 440 | return; |
| 441 | } |
| 442 | |
| 443 | /* First user of a new VMID generation? */ |
| 444 | if (unlikely(kvm_next_vmid == 0)) { |
| 445 | atomic64_inc(&kvm_vmid_gen); |
| 446 | kvm_next_vmid = 1; |
| 447 | |
| 448 | /* |
| 449 | * On SMP we know no other CPUs can use this CPU's or each |
| 450 | * other's VMID after force_vm_exit returns since the |
| 451 | * kvm_vmid_lock blocks them from reentry to the guest. |
| 452 | */ |
| 453 | force_vm_exit(cpu_all_mask); |
| 454 | /* |
| 455 | * Now broadcast TLB + ICACHE invalidation over the inner |
| 456 | * shareable domain to make sure all data structures are |
| 457 | * clean. |
| 458 | */ |
| 459 | kvm_call_hyp(__kvm_flush_vm_context); |
| 460 | } |
| 461 | |
| 462 | kvm->arch.vmid_gen = atomic64_read(&kvm_vmid_gen); |
| 463 | kvm->arch.vmid = kvm_next_vmid; |
| 464 | kvm_next_vmid++; |
| 465 | |
| 466 | /* update vttbr to be used with the new vmid */ |
| 467 | pgd_phys = virt_to_phys(kvm->arch.pgd); |
| 468 | vmid = ((u64)(kvm->arch.vmid) << VTTBR_VMID_SHIFT) & VTTBR_VMID_MASK; |
| 469 | kvm->arch.vttbr = pgd_phys & VTTBR_BADDR_MASK; |
| 470 | kvm->arch.vttbr |= vmid; |
| 471 | |
| 472 | spin_unlock(&kvm_vmid_lock); |
| 473 | } |
| 474 | |
Christoffer Dall | 5b3e5e5 | 2013-01-20 18:28:09 -0500 | [diff] [blame] | 475 | static int handle_svc_hyp(struct kvm_vcpu *vcpu, struct kvm_run *run) |
| 476 | { |
| 477 | /* SVC called from Hyp mode should never get here */ |
| 478 | kvm_debug("SVC called from Hyp mode shouldn't go here\n"); |
| 479 | BUG(); |
| 480 | return -EINVAL; /* Squash warning */ |
| 481 | } |
| 482 | |
| 483 | static int handle_hvc(struct kvm_vcpu *vcpu, struct kvm_run *run) |
| 484 | { |
| 485 | trace_kvm_hvc(*vcpu_pc(vcpu), *vcpu_reg(vcpu, 0), |
| 486 | vcpu->arch.hsr & HSR_HVC_IMM_MASK); |
| 487 | |
Marc Zyngier | aa024c2 | 2013-01-20 18:28:13 -0500 | [diff] [blame] | 488 | if (kvm_psci_call(vcpu)) |
| 489 | return 1; |
| 490 | |
Christoffer Dall | 5b3e5e5 | 2013-01-20 18:28:09 -0500 | [diff] [blame] | 491 | kvm_inject_undefined(vcpu); |
| 492 | return 1; |
| 493 | } |
| 494 | |
| 495 | static int handle_smc(struct kvm_vcpu *vcpu, struct kvm_run *run) |
| 496 | { |
Marc Zyngier | aa024c2 | 2013-01-20 18:28:13 -0500 | [diff] [blame] | 497 | if (kvm_psci_call(vcpu)) |
| 498 | return 1; |
| 499 | |
Christoffer Dall | 5b3e5e5 | 2013-01-20 18:28:09 -0500 | [diff] [blame] | 500 | kvm_inject_undefined(vcpu); |
| 501 | return 1; |
| 502 | } |
| 503 | |
| 504 | static int handle_pabt_hyp(struct kvm_vcpu *vcpu, struct kvm_run *run) |
| 505 | { |
| 506 | /* The hypervisor should never cause aborts */ |
| 507 | kvm_err("Prefetch Abort taken from Hyp mode at %#08x (HSR: %#08x)\n", |
| 508 | vcpu->arch.hxfar, vcpu->arch.hsr); |
| 509 | return -EFAULT; |
| 510 | } |
| 511 | |
| 512 | static int handle_dabt_hyp(struct kvm_vcpu *vcpu, struct kvm_run *run) |
| 513 | { |
| 514 | /* This is either an error in the ws. code or an external abort */ |
| 515 | kvm_err("Data Abort taken from Hyp mode at %#08x (HSR: %#08x)\n", |
| 516 | vcpu->arch.hxfar, vcpu->arch.hsr); |
| 517 | return -EFAULT; |
| 518 | } |
| 519 | |
| 520 | typedef int (*exit_handle_fn)(struct kvm_vcpu *, struct kvm_run *); |
| 521 | static exit_handle_fn arm_exit_handlers[] = { |
| 522 | [HSR_EC_WFI] = kvm_handle_wfi, |
| 523 | [HSR_EC_CP15_32] = kvm_handle_cp15_32, |
| 524 | [HSR_EC_CP15_64] = kvm_handle_cp15_64, |
| 525 | [HSR_EC_CP14_MR] = kvm_handle_cp14_access, |
| 526 | [HSR_EC_CP14_LS] = kvm_handle_cp14_load_store, |
| 527 | [HSR_EC_CP14_64] = kvm_handle_cp14_access, |
| 528 | [HSR_EC_CP_0_13] = kvm_handle_cp_0_13_access, |
| 529 | [HSR_EC_CP10_ID] = kvm_handle_cp10_id, |
| 530 | [HSR_EC_SVC_HYP] = handle_svc_hyp, |
| 531 | [HSR_EC_HVC] = handle_hvc, |
| 532 | [HSR_EC_SMC] = handle_smc, |
| 533 | [HSR_EC_IABT] = kvm_handle_guest_abort, |
| 534 | [HSR_EC_IABT_HYP] = handle_pabt_hyp, |
| 535 | [HSR_EC_DABT] = kvm_handle_guest_abort, |
| 536 | [HSR_EC_DABT_HYP] = handle_dabt_hyp, |
| 537 | }; |
| 538 | |
| 539 | /* |
| 540 | * A conditional instruction is allowed to trap, even though it |
| 541 | * wouldn't be executed. So let's re-implement the hardware, in |
| 542 | * software! |
| 543 | */ |
| 544 | static bool kvm_condition_valid(struct kvm_vcpu *vcpu) |
| 545 | { |
| 546 | unsigned long cpsr, cond, insn; |
| 547 | |
| 548 | /* |
| 549 | * Exception Code 0 can only happen if we set HCR.TGE to 1, to |
| 550 | * catch undefined instructions, and then we won't get past |
| 551 | * the arm_exit_handlers test anyway. |
| 552 | */ |
| 553 | BUG_ON(((vcpu->arch.hsr & HSR_EC) >> HSR_EC_SHIFT) == 0); |
| 554 | |
| 555 | /* Top two bits non-zero? Unconditional. */ |
| 556 | if (vcpu->arch.hsr >> 30) |
| 557 | return true; |
| 558 | |
| 559 | cpsr = *vcpu_cpsr(vcpu); |
| 560 | |
| 561 | /* Is condition field valid? */ |
| 562 | if ((vcpu->arch.hsr & HSR_CV) >> HSR_CV_SHIFT) |
| 563 | cond = (vcpu->arch.hsr & HSR_COND) >> HSR_COND_SHIFT; |
| 564 | else { |
| 565 | /* This can happen in Thumb mode: examine IT state. */ |
| 566 | unsigned long it; |
| 567 | |
| 568 | it = ((cpsr >> 8) & 0xFC) | ((cpsr >> 25) & 0x3); |
| 569 | |
| 570 | /* it == 0 => unconditional. */ |
| 571 | if (it == 0) |
| 572 | return true; |
| 573 | |
| 574 | /* The cond for this insn works out as the top 4 bits. */ |
| 575 | cond = (it >> 4); |
| 576 | } |
| 577 | |
| 578 | /* Shift makes it look like an ARM-mode instruction */ |
| 579 | insn = cond << 28; |
| 580 | return arm_check_condition(insn, cpsr) != ARM_OPCODE_CONDTEST_FAIL; |
| 581 | } |
| 582 | |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 583 | /* |
| 584 | * Return > 0 to return to guest, < 0 on error, 0 (and set exit_reason) on |
| 585 | * proper exit to QEMU. |
| 586 | */ |
| 587 | static int handle_exit(struct kvm_vcpu *vcpu, struct kvm_run *run, |
| 588 | int exception_index) |
| 589 | { |
Christoffer Dall | 5b3e5e5 | 2013-01-20 18:28:09 -0500 | [diff] [blame] | 590 | unsigned long hsr_ec; |
| 591 | |
| 592 | switch (exception_index) { |
| 593 | case ARM_EXCEPTION_IRQ: |
| 594 | return 1; |
| 595 | case ARM_EXCEPTION_UNDEFINED: |
| 596 | kvm_err("Undefined exception in Hyp mode at: %#08x\n", |
| 597 | vcpu->arch.hyp_pc); |
| 598 | BUG(); |
| 599 | panic("KVM: Hypervisor undefined exception!\n"); |
| 600 | case ARM_EXCEPTION_DATA_ABORT: |
| 601 | case ARM_EXCEPTION_PREF_ABORT: |
| 602 | case ARM_EXCEPTION_HVC: |
| 603 | hsr_ec = (vcpu->arch.hsr & HSR_EC) >> HSR_EC_SHIFT; |
| 604 | |
| 605 | if (hsr_ec >= ARRAY_SIZE(arm_exit_handlers) |
| 606 | || !arm_exit_handlers[hsr_ec]) { |
| 607 | kvm_err("Unkown exception class: %#08lx, " |
| 608 | "hsr: %#08x\n", hsr_ec, |
| 609 | (unsigned int)vcpu->arch.hsr); |
| 610 | BUG(); |
| 611 | } |
| 612 | |
| 613 | /* |
| 614 | * See ARM ARM B1.14.1: "Hyp traps on instructions |
| 615 | * that fail their condition code check" |
| 616 | */ |
| 617 | if (!kvm_condition_valid(vcpu)) { |
| 618 | bool is_wide = vcpu->arch.hsr & HSR_IL; |
| 619 | kvm_skip_instr(vcpu, is_wide); |
| 620 | return 1; |
| 621 | } |
| 622 | |
| 623 | return arm_exit_handlers[hsr_ec](vcpu, run); |
| 624 | default: |
| 625 | kvm_pr_unimpl("Unsupported exception type: %d", |
| 626 | exception_index); |
| 627 | run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 628 | return 0; |
| 629 | } |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 630 | } |
| 631 | |
| 632 | static int kvm_vcpu_first_run_init(struct kvm_vcpu *vcpu) |
| 633 | { |
| 634 | if (likely(vcpu->arch.has_run_once)) |
| 635 | return 0; |
| 636 | |
| 637 | vcpu->arch.has_run_once = true; |
Marc Zyngier | aa024c2 | 2013-01-20 18:28:13 -0500 | [diff] [blame] | 638 | |
| 639 | /* |
Marc Zyngier | 01ac5e3 | 2013-01-21 19:36:16 -0500 | [diff] [blame] | 640 | * Initialize the VGIC before running a vcpu the first time on |
| 641 | * this VM. |
| 642 | */ |
| 643 | if (irqchip_in_kernel(vcpu->kvm) && |
| 644 | unlikely(!vgic_initialized(vcpu->kvm))) { |
| 645 | int ret = kvm_vgic_init(vcpu->kvm); |
| 646 | if (ret) |
| 647 | return ret; |
| 648 | } |
| 649 | |
| 650 | /* |
Marc Zyngier | aa024c2 | 2013-01-20 18:28:13 -0500 | [diff] [blame] | 651 | * Handle the "start in power-off" case by calling into the |
| 652 | * PSCI code. |
| 653 | */ |
| 654 | if (test_and_clear_bit(KVM_ARM_VCPU_POWER_OFF, vcpu->arch.features)) { |
| 655 | *vcpu_reg(vcpu, 0) = KVM_PSCI_FN_CPU_OFF; |
| 656 | kvm_psci_call(vcpu); |
| 657 | } |
| 658 | |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 659 | return 0; |
| 660 | } |
| 661 | |
Marc Zyngier | aa024c2 | 2013-01-20 18:28:13 -0500 | [diff] [blame] | 662 | static void vcpu_pause(struct kvm_vcpu *vcpu) |
| 663 | { |
| 664 | wait_queue_head_t *wq = kvm_arch_vcpu_wq(vcpu); |
| 665 | |
| 666 | wait_event_interruptible(*wq, !vcpu->arch.pause); |
| 667 | } |
| 668 | |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 669 | /** |
| 670 | * kvm_arch_vcpu_ioctl_run - the main VCPU run function to execute guest code |
| 671 | * @vcpu: The VCPU pointer |
| 672 | * @run: The kvm_run structure pointer used for userspace state exchange |
| 673 | * |
| 674 | * This function is called through the VCPU_RUN ioctl called from user space. It |
| 675 | * will execute VM code in a loop until the time slice for the process is used |
| 676 | * or some emulation is needed from user space in which case the function will |
| 677 | * return with return value 0 and with the kvm_run structure filled in with the |
| 678 | * required data for the requested emulation. |
| 679 | */ |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 680 | int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run) |
| 681 | { |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 682 | int ret; |
| 683 | sigset_t sigsaved; |
| 684 | |
| 685 | /* Make sure they initialize the vcpu with KVM_ARM_VCPU_INIT */ |
| 686 | if (unlikely(vcpu->arch.target < 0)) |
| 687 | return -ENOEXEC; |
| 688 | |
| 689 | ret = kvm_vcpu_first_run_init(vcpu); |
| 690 | if (ret) |
| 691 | return ret; |
| 692 | |
Christoffer Dall | 45e96ea | 2013-01-20 18:43:58 -0500 | [diff] [blame] | 693 | if (run->exit_reason == KVM_EXIT_MMIO) { |
| 694 | ret = kvm_handle_mmio_return(vcpu, vcpu->run); |
| 695 | if (ret) |
| 696 | return ret; |
| 697 | } |
| 698 | |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 699 | if (vcpu->sigset_active) |
| 700 | sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved); |
| 701 | |
| 702 | ret = 1; |
| 703 | run->exit_reason = KVM_EXIT_UNKNOWN; |
| 704 | while (ret > 0) { |
| 705 | /* |
| 706 | * Check conditions before entering the guest |
| 707 | */ |
| 708 | cond_resched(); |
| 709 | |
| 710 | update_vttbr(vcpu->kvm); |
| 711 | |
Marc Zyngier | aa024c2 | 2013-01-20 18:28:13 -0500 | [diff] [blame] | 712 | if (vcpu->arch.pause) |
| 713 | vcpu_pause(vcpu); |
| 714 | |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 715 | kvm_vgic_flush_hwstate(vcpu); |
Marc Zyngier | c7e3ba6 | 2013-01-23 13:21:59 -0500 | [diff] [blame] | 716 | kvm_timer_flush_hwstate(vcpu); |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 717 | |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 718 | local_irq_disable(); |
| 719 | |
| 720 | /* |
| 721 | * Re-check atomic conditions |
| 722 | */ |
| 723 | if (signal_pending(current)) { |
| 724 | ret = -EINTR; |
| 725 | run->exit_reason = KVM_EXIT_INTR; |
| 726 | } |
| 727 | |
| 728 | if (ret <= 0 || need_new_vmid_gen(vcpu->kvm)) { |
| 729 | local_irq_enable(); |
Marc Zyngier | c7e3ba6 | 2013-01-23 13:21:59 -0500 | [diff] [blame] | 730 | kvm_timer_sync_hwstate(vcpu); |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 731 | kvm_vgic_sync_hwstate(vcpu); |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 732 | continue; |
| 733 | } |
| 734 | |
| 735 | /************************************************************** |
| 736 | * Enter the guest |
| 737 | */ |
| 738 | trace_kvm_entry(*vcpu_pc(vcpu)); |
| 739 | kvm_guest_enter(); |
| 740 | vcpu->mode = IN_GUEST_MODE; |
| 741 | |
| 742 | ret = kvm_call_hyp(__kvm_vcpu_run, vcpu); |
| 743 | |
| 744 | vcpu->mode = OUTSIDE_GUEST_MODE; |
Christoffer Dall | 5b3e5e5 | 2013-01-20 18:28:09 -0500 | [diff] [blame] | 745 | vcpu->arch.last_pcpu = smp_processor_id(); |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 746 | kvm_guest_exit(); |
| 747 | trace_kvm_exit(*vcpu_pc(vcpu)); |
| 748 | /* |
| 749 | * We may have taken a host interrupt in HYP mode (ie |
| 750 | * while executing the guest). This interrupt is still |
| 751 | * pending, as we haven't serviced it yet! |
| 752 | * |
| 753 | * We're now back in SVC mode, with interrupts |
| 754 | * disabled. Enabling the interrupts now will have |
| 755 | * the effect of taking the interrupt again, in SVC |
| 756 | * mode this time. |
| 757 | */ |
| 758 | local_irq_enable(); |
| 759 | |
| 760 | /* |
| 761 | * Back from guest |
| 762 | *************************************************************/ |
| 763 | |
Marc Zyngier | c7e3ba6 | 2013-01-23 13:21:59 -0500 | [diff] [blame] | 764 | kvm_timer_sync_hwstate(vcpu); |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 765 | kvm_vgic_sync_hwstate(vcpu); |
| 766 | |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 767 | ret = handle_exit(vcpu, run, ret); |
| 768 | } |
| 769 | |
| 770 | if (vcpu->sigset_active) |
| 771 | sigprocmask(SIG_SETMASK, &sigsaved, NULL); |
| 772 | return ret; |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 773 | } |
| 774 | |
Christoffer Dall | 86ce853 | 2013-01-20 18:28:08 -0500 | [diff] [blame] | 775 | static int vcpu_interrupt_line(struct kvm_vcpu *vcpu, int number, bool level) |
| 776 | { |
| 777 | int bit_index; |
| 778 | bool set; |
| 779 | unsigned long *ptr; |
| 780 | |
| 781 | if (number == KVM_ARM_IRQ_CPU_IRQ) |
| 782 | bit_index = __ffs(HCR_VI); |
| 783 | else /* KVM_ARM_IRQ_CPU_FIQ */ |
| 784 | bit_index = __ffs(HCR_VF); |
| 785 | |
| 786 | ptr = (unsigned long *)&vcpu->arch.irq_lines; |
| 787 | if (level) |
| 788 | set = test_and_set_bit(bit_index, ptr); |
| 789 | else |
| 790 | set = test_and_clear_bit(bit_index, ptr); |
| 791 | |
| 792 | /* |
| 793 | * If we didn't change anything, no need to wake up or kick other CPUs |
| 794 | */ |
| 795 | if (set == level) |
| 796 | return 0; |
| 797 | |
| 798 | /* |
| 799 | * The vcpu irq_lines field was updated, wake up sleeping VCPUs and |
| 800 | * trigger a world-switch round on the running physical CPU to set the |
| 801 | * virtual IRQ/FIQ fields in the HCR appropriately. |
| 802 | */ |
| 803 | kvm_vcpu_kick(vcpu); |
| 804 | |
| 805 | return 0; |
| 806 | } |
| 807 | |
| 808 | int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level) |
| 809 | { |
| 810 | u32 irq = irq_level->irq; |
| 811 | unsigned int irq_type, vcpu_idx, irq_num; |
| 812 | int nrcpus = atomic_read(&kvm->online_vcpus); |
| 813 | struct kvm_vcpu *vcpu = NULL; |
| 814 | bool level = irq_level->level; |
| 815 | |
| 816 | irq_type = (irq >> KVM_ARM_IRQ_TYPE_SHIFT) & KVM_ARM_IRQ_TYPE_MASK; |
| 817 | vcpu_idx = (irq >> KVM_ARM_IRQ_VCPU_SHIFT) & KVM_ARM_IRQ_VCPU_MASK; |
| 818 | irq_num = (irq >> KVM_ARM_IRQ_NUM_SHIFT) & KVM_ARM_IRQ_NUM_MASK; |
| 819 | |
| 820 | trace_kvm_irq_line(irq_type, vcpu_idx, irq_num, irq_level->level); |
| 821 | |
Marc Zyngier | 5863c2c | 2013-01-21 19:36:15 -0500 | [diff] [blame] | 822 | switch (irq_type) { |
| 823 | case KVM_ARM_IRQ_TYPE_CPU: |
| 824 | if (irqchip_in_kernel(kvm)) |
| 825 | return -ENXIO; |
Christoffer Dall | 86ce853 | 2013-01-20 18:28:08 -0500 | [diff] [blame] | 826 | |
Marc Zyngier | 5863c2c | 2013-01-21 19:36:15 -0500 | [diff] [blame] | 827 | if (vcpu_idx >= nrcpus) |
| 828 | return -EINVAL; |
Christoffer Dall | 86ce853 | 2013-01-20 18:28:08 -0500 | [diff] [blame] | 829 | |
Marc Zyngier | 5863c2c | 2013-01-21 19:36:15 -0500 | [diff] [blame] | 830 | vcpu = kvm_get_vcpu(kvm, vcpu_idx); |
| 831 | if (!vcpu) |
| 832 | return -EINVAL; |
Christoffer Dall | 86ce853 | 2013-01-20 18:28:08 -0500 | [diff] [blame] | 833 | |
Marc Zyngier | 5863c2c | 2013-01-21 19:36:15 -0500 | [diff] [blame] | 834 | if (irq_num > KVM_ARM_IRQ_CPU_FIQ) |
| 835 | return -EINVAL; |
Christoffer Dall | 86ce853 | 2013-01-20 18:28:08 -0500 | [diff] [blame] | 836 | |
Marc Zyngier | 5863c2c | 2013-01-21 19:36:15 -0500 | [diff] [blame] | 837 | return vcpu_interrupt_line(vcpu, irq_num, level); |
| 838 | case KVM_ARM_IRQ_TYPE_PPI: |
| 839 | if (!irqchip_in_kernel(kvm)) |
| 840 | return -ENXIO; |
| 841 | |
| 842 | if (vcpu_idx >= nrcpus) |
| 843 | return -EINVAL; |
| 844 | |
| 845 | vcpu = kvm_get_vcpu(kvm, vcpu_idx); |
| 846 | if (!vcpu) |
| 847 | return -EINVAL; |
| 848 | |
| 849 | if (irq_num < VGIC_NR_SGIS || irq_num >= VGIC_NR_PRIVATE_IRQS) |
| 850 | return -EINVAL; |
| 851 | |
| 852 | return kvm_vgic_inject_irq(kvm, vcpu->vcpu_id, irq_num, level); |
| 853 | case KVM_ARM_IRQ_TYPE_SPI: |
| 854 | if (!irqchip_in_kernel(kvm)) |
| 855 | return -ENXIO; |
| 856 | |
| 857 | if (irq_num < VGIC_NR_PRIVATE_IRQS || |
| 858 | irq_num > KVM_ARM_IRQ_GIC_MAX) |
| 859 | return -EINVAL; |
| 860 | |
| 861 | return kvm_vgic_inject_irq(kvm, 0, irq_num, level); |
| 862 | } |
| 863 | |
| 864 | return -EINVAL; |
Christoffer Dall | 86ce853 | 2013-01-20 18:28:08 -0500 | [diff] [blame] | 865 | } |
| 866 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 867 | long kvm_arch_vcpu_ioctl(struct file *filp, |
| 868 | unsigned int ioctl, unsigned long arg) |
| 869 | { |
| 870 | struct kvm_vcpu *vcpu = filp->private_data; |
| 871 | void __user *argp = (void __user *)arg; |
| 872 | |
| 873 | switch (ioctl) { |
| 874 | case KVM_ARM_VCPU_INIT: { |
| 875 | struct kvm_vcpu_init init; |
| 876 | |
| 877 | if (copy_from_user(&init, argp, sizeof(init))) |
| 878 | return -EFAULT; |
| 879 | |
| 880 | return kvm_vcpu_set_target(vcpu, &init); |
| 881 | |
| 882 | } |
| 883 | case KVM_SET_ONE_REG: |
| 884 | case KVM_GET_ONE_REG: { |
| 885 | struct kvm_one_reg reg; |
| 886 | if (copy_from_user(®, argp, sizeof(reg))) |
| 887 | return -EFAULT; |
| 888 | if (ioctl == KVM_SET_ONE_REG) |
| 889 | return kvm_arm_set_reg(vcpu, ®); |
| 890 | else |
| 891 | return kvm_arm_get_reg(vcpu, ®); |
| 892 | } |
| 893 | case KVM_GET_REG_LIST: { |
| 894 | struct kvm_reg_list __user *user_list = argp; |
| 895 | struct kvm_reg_list reg_list; |
| 896 | unsigned n; |
| 897 | |
| 898 | if (copy_from_user(®_list, user_list, sizeof(reg_list))) |
| 899 | return -EFAULT; |
| 900 | n = reg_list.n; |
| 901 | reg_list.n = kvm_arm_num_regs(vcpu); |
| 902 | if (copy_to_user(user_list, ®_list, sizeof(reg_list))) |
| 903 | return -EFAULT; |
| 904 | if (n < reg_list.n) |
| 905 | return -E2BIG; |
| 906 | return kvm_arm_copy_reg_indices(vcpu, user_list->reg); |
| 907 | } |
| 908 | default: |
| 909 | return -EINVAL; |
| 910 | } |
| 911 | } |
| 912 | |
| 913 | int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log) |
| 914 | { |
| 915 | return -EINVAL; |
| 916 | } |
| 917 | |
Christoffer Dall | 3401d546 | 2013-01-23 13:18:04 -0500 | [diff] [blame] | 918 | static int kvm_vm_ioctl_set_device_addr(struct kvm *kvm, |
| 919 | struct kvm_arm_device_addr *dev_addr) |
| 920 | { |
Christoffer Dall | 330690c | 2013-01-21 19:36:13 -0500 | [diff] [blame] | 921 | unsigned long dev_id, type; |
| 922 | |
| 923 | dev_id = (dev_addr->id & KVM_ARM_DEVICE_ID_MASK) >> |
| 924 | KVM_ARM_DEVICE_ID_SHIFT; |
| 925 | type = (dev_addr->id & KVM_ARM_DEVICE_TYPE_MASK) >> |
| 926 | KVM_ARM_DEVICE_TYPE_SHIFT; |
| 927 | |
| 928 | switch (dev_id) { |
| 929 | case KVM_ARM_DEVICE_VGIC_V2: |
| 930 | if (!vgic_present) |
| 931 | return -ENXIO; |
| 932 | return kvm_vgic_set_addr(kvm, type, dev_addr->addr); |
| 933 | default: |
| 934 | return -ENODEV; |
| 935 | } |
Christoffer Dall | 3401d546 | 2013-01-23 13:18:04 -0500 | [diff] [blame] | 936 | } |
| 937 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 938 | long kvm_arch_vm_ioctl(struct file *filp, |
| 939 | unsigned int ioctl, unsigned long arg) |
| 940 | { |
Christoffer Dall | 3401d546 | 2013-01-23 13:18:04 -0500 | [diff] [blame] | 941 | struct kvm *kvm = filp->private_data; |
| 942 | void __user *argp = (void __user *)arg; |
| 943 | |
| 944 | switch (ioctl) { |
Marc Zyngier | 5863c2c | 2013-01-21 19:36:15 -0500 | [diff] [blame] | 945 | case KVM_CREATE_IRQCHIP: { |
| 946 | if (vgic_present) |
| 947 | return kvm_vgic_create(kvm); |
| 948 | else |
| 949 | return -ENXIO; |
| 950 | } |
Christoffer Dall | 3401d546 | 2013-01-23 13:18:04 -0500 | [diff] [blame] | 951 | case KVM_ARM_SET_DEVICE_ADDR: { |
| 952 | struct kvm_arm_device_addr dev_addr; |
| 953 | |
| 954 | if (copy_from_user(&dev_addr, argp, sizeof(dev_addr))) |
| 955 | return -EFAULT; |
| 956 | return kvm_vm_ioctl_set_device_addr(kvm, &dev_addr); |
| 957 | } |
| 958 | default: |
| 959 | return -EINVAL; |
| 960 | } |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 961 | } |
| 962 | |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 963 | static void cpu_init_hyp_mode(void *vector) |
| 964 | { |
| 965 | unsigned long long pgd_ptr; |
| 966 | unsigned long pgd_low, pgd_high; |
| 967 | unsigned long hyp_stack_ptr; |
| 968 | unsigned long stack_page; |
| 969 | unsigned long vector_ptr; |
| 970 | |
| 971 | /* Switch from the HYP stub to our own HYP init vector */ |
| 972 | __hyp_set_vectors((unsigned long)vector); |
| 973 | |
| 974 | pgd_ptr = (unsigned long long)kvm_mmu_get_httbr(); |
| 975 | pgd_low = (pgd_ptr & ((1ULL << 32) - 1)); |
| 976 | pgd_high = (pgd_ptr >> 32ULL); |
| 977 | stack_page = __get_cpu_var(kvm_arm_hyp_stack_page); |
| 978 | hyp_stack_ptr = stack_page + PAGE_SIZE; |
| 979 | vector_ptr = (unsigned long)__kvm_hyp_vector; |
| 980 | |
| 981 | /* |
| 982 | * Call initialization code, and switch to the full blown |
| 983 | * HYP code. The init code doesn't need to preserve these registers as |
| 984 | * r1-r3 and r12 are already callee save according to the AAPCS. |
| 985 | * Note that we slightly misuse the prototype by casing the pgd_low to |
| 986 | * a void *. |
| 987 | */ |
| 988 | kvm_call_hyp((void *)pgd_low, pgd_high, hyp_stack_ptr, vector_ptr); |
| 989 | } |
| 990 | |
| 991 | /** |
| 992 | * Inits Hyp-mode on all online CPUs |
| 993 | */ |
| 994 | static int init_hyp_mode(void) |
| 995 | { |
| 996 | phys_addr_t init_phys_addr; |
| 997 | int cpu; |
| 998 | int err = 0; |
| 999 | |
| 1000 | /* |
| 1001 | * Allocate Hyp PGD and setup Hyp identity mapping |
| 1002 | */ |
| 1003 | err = kvm_mmu_init(); |
| 1004 | if (err) |
| 1005 | goto out_err; |
| 1006 | |
| 1007 | /* |
| 1008 | * It is probably enough to obtain the default on one |
| 1009 | * CPU. It's unlikely to be different on the others. |
| 1010 | */ |
| 1011 | hyp_default_vectors = __hyp_get_vectors(); |
| 1012 | |
| 1013 | /* |
| 1014 | * Allocate stack pages for Hypervisor-mode |
| 1015 | */ |
| 1016 | for_each_possible_cpu(cpu) { |
| 1017 | unsigned long stack_page; |
| 1018 | |
| 1019 | stack_page = __get_free_page(GFP_KERNEL); |
| 1020 | if (!stack_page) { |
| 1021 | err = -ENOMEM; |
| 1022 | goto out_free_stack_pages; |
| 1023 | } |
| 1024 | |
| 1025 | per_cpu(kvm_arm_hyp_stack_page, cpu) = stack_page; |
| 1026 | } |
| 1027 | |
| 1028 | /* |
| 1029 | * Execute the init code on each CPU. |
| 1030 | * |
| 1031 | * Note: The stack is not mapped yet, so don't do anything else than |
| 1032 | * initializing the hypervisor mode on each CPU using a local stack |
| 1033 | * space for temporary storage. |
| 1034 | */ |
| 1035 | init_phys_addr = virt_to_phys(__kvm_hyp_init); |
| 1036 | for_each_online_cpu(cpu) { |
| 1037 | smp_call_function_single(cpu, cpu_init_hyp_mode, |
| 1038 | (void *)(long)init_phys_addr, 1); |
| 1039 | } |
| 1040 | |
| 1041 | /* |
| 1042 | * Unmap the identity mapping |
| 1043 | */ |
| 1044 | kvm_clear_hyp_idmap(); |
| 1045 | |
| 1046 | /* |
| 1047 | * Map the Hyp-code called directly from the host |
| 1048 | */ |
| 1049 | err = create_hyp_mappings(__kvm_hyp_code_start, __kvm_hyp_code_end); |
| 1050 | if (err) { |
| 1051 | kvm_err("Cannot map world-switch code\n"); |
| 1052 | goto out_free_mappings; |
| 1053 | } |
| 1054 | |
| 1055 | /* |
| 1056 | * Map the Hyp stack pages |
| 1057 | */ |
| 1058 | for_each_possible_cpu(cpu) { |
| 1059 | char *stack_page = (char *)per_cpu(kvm_arm_hyp_stack_page, cpu); |
| 1060 | err = create_hyp_mappings(stack_page, stack_page + PAGE_SIZE); |
| 1061 | |
| 1062 | if (err) { |
| 1063 | kvm_err("Cannot map hyp stack\n"); |
| 1064 | goto out_free_mappings; |
| 1065 | } |
| 1066 | } |
| 1067 | |
| 1068 | /* |
| 1069 | * Map the host VFP structures |
| 1070 | */ |
| 1071 | kvm_host_vfp_state = alloc_percpu(struct vfp_hard_struct); |
| 1072 | if (!kvm_host_vfp_state) { |
| 1073 | err = -ENOMEM; |
| 1074 | kvm_err("Cannot allocate host VFP state\n"); |
| 1075 | goto out_free_mappings; |
| 1076 | } |
| 1077 | |
| 1078 | for_each_possible_cpu(cpu) { |
| 1079 | struct vfp_hard_struct *vfp; |
| 1080 | |
| 1081 | vfp = per_cpu_ptr(kvm_host_vfp_state, cpu); |
| 1082 | err = create_hyp_mappings(vfp, vfp + 1); |
| 1083 | |
| 1084 | if (err) { |
| 1085 | kvm_err("Cannot map host VFP state: %d\n", err); |
| 1086 | goto out_free_vfp; |
| 1087 | } |
| 1088 | } |
| 1089 | |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 1090 | /* |
| 1091 | * Init HYP view of VGIC |
| 1092 | */ |
| 1093 | err = kvm_vgic_hyp_init(); |
| 1094 | if (err) |
| 1095 | goto out_free_vfp; |
| 1096 | |
Marc Zyngier | 01ac5e3 | 2013-01-21 19:36:16 -0500 | [diff] [blame] | 1097 | #ifdef CONFIG_KVM_ARM_VGIC |
| 1098 | vgic_present = true; |
| 1099 | #endif |
| 1100 | |
Marc Zyngier | 967f842 | 2013-01-23 13:21:59 -0500 | [diff] [blame] | 1101 | /* |
| 1102 | * Init HYP architected timer support |
| 1103 | */ |
| 1104 | err = kvm_timer_hyp_init(); |
| 1105 | if (err) |
| 1106 | goto out_free_mappings; |
| 1107 | |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1108 | kvm_info("Hyp mode initialized successfully\n"); |
| 1109 | return 0; |
| 1110 | out_free_vfp: |
| 1111 | free_percpu(kvm_host_vfp_state); |
| 1112 | out_free_mappings: |
| 1113 | free_hyp_pmds(); |
| 1114 | out_free_stack_pages: |
| 1115 | for_each_possible_cpu(cpu) |
| 1116 | free_page(per_cpu(kvm_arm_hyp_stack_page, cpu)); |
| 1117 | out_err: |
| 1118 | kvm_err("error initializing Hyp mode: %d\n", err); |
| 1119 | return err; |
| 1120 | } |
| 1121 | |
| 1122 | /** |
| 1123 | * Initialize Hyp-mode and memory mappings on all CPUs. |
| 1124 | */ |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1125 | int kvm_arch_init(void *opaque) |
| 1126 | { |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1127 | int err; |
| 1128 | |
| 1129 | if (!is_hyp_mode_available()) { |
| 1130 | kvm_err("HYP mode not available\n"); |
| 1131 | return -ENODEV; |
| 1132 | } |
| 1133 | |
| 1134 | if (kvm_target_cpu() < 0) { |
| 1135 | kvm_err("Target CPU not supported!\n"); |
| 1136 | return -ENODEV; |
| 1137 | } |
| 1138 | |
| 1139 | err = init_hyp_mode(); |
| 1140 | if (err) |
| 1141 | goto out_err; |
| 1142 | |
Christoffer Dall | 5b3e5e5 | 2013-01-20 18:28:09 -0500 | [diff] [blame] | 1143 | kvm_coproc_table_init(); |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1144 | return 0; |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1145 | out_err: |
| 1146 | return err; |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1147 | } |
| 1148 | |
| 1149 | /* NOP: Compiling as a module not supported */ |
| 1150 | void kvm_arch_exit(void) |
| 1151 | { |
| 1152 | } |
| 1153 | |
| 1154 | static int arm_init(void) |
| 1155 | { |
| 1156 | int rc = kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE); |
| 1157 | return rc; |
| 1158 | } |
| 1159 | |
| 1160 | module_init(arm_init); |