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