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