blob: dda1959f0ddeb947e8a8020d7da0b02bb19f89cc [file] [log] [blame]
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001/*
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 Zyngierd157f4a2013-04-12 19:12:07 +010019#include <linux/cpu.h>
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +010020#include <linux/cpu_pm.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050021#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 Dall86ce85352013-01-20 18:28:08 -050029#include <linux/kvm.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050030#include <trace/events/kvm.h>
31
32#define CREATE_TRACE_POINTS
33#include "trace.h"
34
Christoffer Dall749cf76c2013-01-20 18:28:06 -050035#include <asm/uaccess.h>
36#include <asm/ptrace.h>
37#include <asm/mman.h>
Christoffer Dall342cd0a2013-01-20 18:28:06 -050038#include <asm/tlbflush.h>
Christoffer Dall5b3e5e52013-01-20 18:28:09 -050039#include <asm/cacheflush.h>
Christoffer Dall342cd0a2013-01-20 18:28:06 -050040#include <asm/virt.h>
41#include <asm/kvm_arm.h>
42#include <asm/kvm_asm.h>
43#include <asm/kvm_mmu.h>
Christoffer Dallf7ed45b2013-01-20 18:47:42 -050044#include <asm/kvm_emulate.h>
Christoffer Dall5b3e5e52013-01-20 18:28:09 -050045#include <asm/kvm_coproc.h>
Marc Zyngieraa024c2f2013-01-20 18:28:13 -050046#include <asm/kvm_psci.h>
Marc Zyngier910917b2015-10-27 12:18:48 +000047#include <asm/sections.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050048
49#ifdef REQUIRES_VIRT
50__asm__(".arch_extension virt");
51#endif
52
Christoffer Dall342cd0a2013-01-20 18:28:06 -050053static DEFINE_PER_CPU(unsigned long, kvm_arm_hyp_stack_page);
Marc Zyngier3de50da2013-04-08 16:47:19 +010054static kvm_cpu_context_t __percpu *kvm_host_cpu_state;
Christoffer Dall342cd0a2013-01-20 18:28:06 -050055static unsigned long hyp_default_vectors;
56
Marc Zyngier1638a122013-01-21 19:36:11 -050057/* Per-CPU variable containing the currently running vcpu. */
58static DEFINE_PER_CPU(struct kvm_vcpu *, kvm_arm_running_vcpu);
59
Christoffer Dallf7ed45b2013-01-20 18:47:42 -050060/* The VMID used in the VTTBR */
61static atomic64_t kvm_vmid_gen = ATOMIC64_INIT(1);
Vladimir Murzin20475f72015-11-16 11:28:18 +000062static u32 kvm_next_vmid;
63static unsigned int kvm_vmid_bits __read_mostly;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -050064static DEFINE_SPINLOCK(kvm_vmid_lock);
Christoffer Dall342cd0a2013-01-20 18:28:06 -050065
Pavel Fedinc7da6fa2015-12-18 14:38:43 +030066static bool vgic_present;
67
Marc Zyngier1638a122013-01-21 19:36:11 -050068static void kvm_arm_set_running_vcpu(struct kvm_vcpu *vcpu)
69{
70 BUG_ON(preemptible());
Christoph Lameter1436c1a2013-10-21 13:17:08 +010071 __this_cpu_write(kvm_arm_running_vcpu, vcpu);
Marc Zyngier1638a122013-01-21 19:36:11 -050072}
73
74/**
75 * kvm_arm_get_running_vcpu - get the vcpu running on the current CPU.
76 * Must be called from non-preemptible context
77 */
78struct kvm_vcpu *kvm_arm_get_running_vcpu(void)
79{
80 BUG_ON(preemptible());
Christoph Lameter1436c1a2013-10-21 13:17:08 +010081 return __this_cpu_read(kvm_arm_running_vcpu);
Marc Zyngier1638a122013-01-21 19:36:11 -050082}
83
84/**
85 * kvm_arm_get_running_vcpus - get the per-CPU array of currently running vcpus.
86 */
Will Deacon4000be42014-08-26 15:13:21 +010087struct kvm_vcpu * __percpu *kvm_get_running_vcpus(void)
Marc Zyngier1638a122013-01-21 19:36:11 -050088{
89 return &kvm_arm_running_vcpu;
90}
91
Radim Krčmář13a34e02014-08-28 15:13:03 +020092int kvm_arch_hardware_enable(void)
Christoffer Dall749cf76c2013-01-20 18:28:06 -050093{
94 return 0;
95}
96
97int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
98{
99 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
100}
101
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500102int kvm_arch_hardware_setup(void)
103{
104 return 0;
105}
106
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500107void kvm_arch_check_processor_compat(void *rtn)
108{
109 *(int *)rtn = 0;
110}
111
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500112
Christoffer Dalld5d81842013-01-20 18:28:07 -0500113/**
114 * kvm_arch_init_vm - initializes a VM data structure
115 * @kvm: pointer to the KVM struct
116 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500117int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
118{
Christoffer Dalld5d81842013-01-20 18:28:07 -0500119 int ret = 0;
120
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500121 if (type)
122 return -EINVAL;
123
Christoffer Dalld5d81842013-01-20 18:28:07 -0500124 ret = kvm_alloc_stage2_pgd(kvm);
125 if (ret)
126 goto out_fail_alloc;
127
128 ret = create_hyp_mappings(kvm, kvm + 1);
129 if (ret)
130 goto out_free_stage2_pgd;
131
Marc Zyngier6c3d63c2014-06-23 17:37:18 +0100132 kvm_vgic_early_init(kvm);
Christoffer Dalla1a64382013-11-16 10:51:25 -0800133 kvm_timer_init(kvm);
134
Christoffer Dalld5d81842013-01-20 18:28:07 -0500135 /* Mark the initial VMID generation invalid */
136 kvm->arch.vmid_gen = 0;
137
Andre Przywara3caa2d82014-06-02 16:26:01 +0200138 /* The maximum number of VCPUs is limited by the host's GIC model */
Pavel Fedinc7da6fa2015-12-18 14:38:43 +0300139 kvm->arch.max_vcpus = vgic_present ?
140 kvm_vgic_get_max_vcpus() : KVM_MAX_VCPUS;
Andre Przywara3caa2d82014-06-02 16:26:01 +0200141
Christoffer Dalld5d81842013-01-20 18:28:07 -0500142 return ret;
143out_free_stage2_pgd:
144 kvm_free_stage2_pgd(kvm);
145out_fail_alloc:
146 return ret;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500147}
148
149int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
150{
151 return VM_FAULT_SIGBUS;
152}
153
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500154
Christoffer Dalld5d81842013-01-20 18:28:07 -0500155/**
156 * kvm_arch_destroy_vm - destroy the VM data structure
157 * @kvm: pointer to the KVM struct
158 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500159void kvm_arch_destroy_vm(struct kvm *kvm)
160{
161 int i;
162
Christoffer Dalld5d81842013-01-20 18:28:07 -0500163 kvm_free_stage2_pgd(kvm);
164
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500165 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
166 if (kvm->vcpus[i]) {
167 kvm_arch_vcpu_free(kvm->vcpus[i]);
168 kvm->vcpus[i] = NULL;
169 }
170 }
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100171
172 kvm_vgic_destroy(kvm);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500173}
174
Alexander Graf784aa3d2014-07-14 18:27:35 +0200175int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500176{
177 int r;
178 switch (ext) {
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500179 case KVM_CAP_IRQCHIP:
Pavel Fedinc7da6fa2015-12-18 14:38:43 +0300180 r = vgic_present;
181 break;
Nikolay Nikolaevd44758c2015-01-24 12:00:02 +0000182 case KVM_CAP_IOEVENTFD:
Christoffer Dall73306722013-10-25 17:29:18 +0100183 case KVM_CAP_DEVICE_CTRL:
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500184 case KVM_CAP_USER_MEMORY:
185 case KVM_CAP_SYNC_MMU:
186 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
187 case KVM_CAP_ONE_REG:
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500188 case KVM_CAP_ARM_PSCI:
Anup Patel4447a202014-04-29 11:24:25 +0530189 case KVM_CAP_ARM_PSCI_0_2:
Christoffer Dall98047882014-08-19 12:18:04 +0200190 case KVM_CAP_READONLY_MEM:
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000191 case KVM_CAP_MP_STATE:
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500192 r = 1;
193 break;
194 case KVM_CAP_COALESCED_MMIO:
195 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
196 break;
Christoffer Dall3401d5462013-01-23 13:18:04 -0500197 case KVM_CAP_ARM_SET_DEVICE_ADDR:
198 r = 1;
Marc Zyngierca46e102013-04-03 10:43:13 +0100199 break;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500200 case KVM_CAP_NR_VCPUS:
201 r = num_online_cpus();
202 break;
203 case KVM_CAP_MAX_VCPUS:
204 r = KVM_MAX_VCPUS;
205 break;
206 default:
Marc Zyngier17b1e312013-04-08 16:47:18 +0100207 r = kvm_arch_dev_ioctl_check_extension(ext);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500208 break;
209 }
210 return r;
211}
212
213long kvm_arch_dev_ioctl(struct file *filp,
214 unsigned int ioctl, unsigned long arg)
215{
216 return -EINVAL;
217}
218
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500219
220struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
221{
222 int err;
223 struct kvm_vcpu *vcpu;
224
Christoffer Dall716139d2014-12-09 14:33:45 +0100225 if (irqchip_in_kernel(kvm) && vgic_initialized(kvm)) {
226 err = -EBUSY;
227 goto out;
228 }
229
Andre Przywara3caa2d82014-06-02 16:26:01 +0200230 if (id >= kvm->arch.max_vcpus) {
231 err = -EINVAL;
232 goto out;
233 }
234
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500235 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
236 if (!vcpu) {
237 err = -ENOMEM;
238 goto out;
239 }
240
241 err = kvm_vcpu_init(vcpu, kvm, id);
242 if (err)
243 goto free_vcpu;
244
Christoffer Dalld5d81842013-01-20 18:28:07 -0500245 err = create_hyp_mappings(vcpu, vcpu + 1);
246 if (err)
247 goto vcpu_uninit;
248
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500249 return vcpu;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500250vcpu_uninit:
251 kvm_vcpu_uninit(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500252free_vcpu:
253 kmem_cache_free(kvm_vcpu_cache, vcpu);
254out:
255 return ERR_PTR(err);
256}
257
Dominik Dingel31928aa2014-12-04 15:47:07 +0100258void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500259{
Marc Zyngier6c3d63c2014-06-23 17:37:18 +0100260 kvm_vgic_vcpu_early_init(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500261}
262
263void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
264{
Christoffer Dalld5d81842013-01-20 18:28:07 -0500265 kvm_mmu_free_memory_caches(vcpu);
Marc Zyngier967f8422013-01-23 13:21:59 -0500266 kvm_timer_vcpu_terminate(vcpu);
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100267 kvm_vgic_vcpu_destroy(vcpu);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500268 kmem_cache_free(kvm_vcpu_cache, vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500269}
270
271void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
272{
273 kvm_arch_vcpu_free(vcpu);
274}
275
276int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
277{
Christoffer Dall1a748472015-03-13 17:02:55 +0000278 return kvm_timer_should_fire(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500279}
280
Christoffer Dalld35268d2015-08-25 19:48:21 +0200281void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu)
282{
283 kvm_timer_schedule(vcpu);
284}
285
286void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu)
287{
288 kvm_timer_unschedule(vcpu);
289}
290
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500291int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
292{
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500293 /* Force users to call KVM_ARM_VCPU_INIT */
294 vcpu->arch.target = -1;
Christoffer Dallf7fa034d2014-10-16 16:40:53 +0200295 bitmap_zero(vcpu->arch.features, KVM_VCPU_MAX_FEATURES);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500296
Marc Zyngier967f8422013-01-23 13:21:59 -0500297 /* Set up the timer */
298 kvm_timer_vcpu_init(vcpu);
299
Alex Bennée84e690b2015-07-07 17:30:00 +0100300 kvm_arm_reset_debug_ptr(vcpu);
301
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500302 return 0;
303}
304
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500305void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
306{
Christoffer Dall86ce85352013-01-20 18:28:08 -0500307 vcpu->cpu = cpu;
Marc Zyngier3de50da2013-04-08 16:47:19 +0100308 vcpu->arch.host_cpu_context = this_cpu_ptr(kvm_host_cpu_state);
Christoffer Dall5b3e5e52013-01-20 18:28:09 -0500309
Marc Zyngier1638a122013-01-21 19:36:11 -0500310 kvm_arm_set_running_vcpu(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500311}
312
313void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
314{
Christoffer Dalle9b152c2013-12-11 20:29:11 -0800315 /*
316 * The arch-generic KVM code expects the cpu field of a vcpu to be -1
317 * if the vcpu is no longer assigned to a cpu. This is used for the
318 * optimized make_all_cpus_request path.
319 */
320 vcpu->cpu = -1;
321
Marc Zyngier1638a122013-01-21 19:36:11 -0500322 kvm_arm_set_running_vcpu(NULL);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500323}
324
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500325int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
326 struct kvm_mp_state *mp_state)
327{
Eric Auger37815282015-09-25 23:41:14 +0200328 if (vcpu->arch.power_off)
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000329 mp_state->mp_state = KVM_MP_STATE_STOPPED;
330 else
331 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
332
333 return 0;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500334}
335
336int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
337 struct kvm_mp_state *mp_state)
338{
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000339 switch (mp_state->mp_state) {
340 case KVM_MP_STATE_RUNNABLE:
Eric Auger37815282015-09-25 23:41:14 +0200341 vcpu->arch.power_off = false;
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000342 break;
343 case KVM_MP_STATE_STOPPED:
Eric Auger37815282015-09-25 23:41:14 +0200344 vcpu->arch.power_off = true;
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000345 break;
346 default:
347 return -EINVAL;
348 }
349
350 return 0;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500351}
352
Christoffer Dall5b3e5e52013-01-20 18:28:09 -0500353/**
354 * kvm_arch_vcpu_runnable - determine if the vcpu can be scheduled
355 * @v: The VCPU pointer
356 *
357 * If the guest CPU is not waiting for interrupts or an interrupt line is
358 * asserted, the CPU is by definition runnable.
359 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500360int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
361{
Eric Auger4f5f1dc2015-09-25 23:41:15 +0200362 return ((!!v->arch.irq_lines || kvm_vgic_vcpu_pending_irq(v))
Eric Auger3b928302015-09-25 23:41:17 +0200363 && !v->arch.power_off && !v->arch.pause);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500364}
365
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500366/* Just ensure a guest exit from a particular CPU */
367static void exit_vm_noop(void *info)
368{
369}
370
371void force_vm_exit(const cpumask_t *mask)
372{
373 smp_call_function_many(mask, exit_vm_noop, NULL, true);
374}
375
376/**
377 * need_new_vmid_gen - check that the VMID is still valid
378 * @kvm: The VM's VMID to checkt
379 *
380 * return true if there is a new generation of VMIDs being used
381 *
382 * The hardware supports only 256 values with the value zero reserved for the
383 * host, so we check if an assigned value belongs to a previous generation,
384 * which which requires us to assign a new value. If we're the first to use a
385 * VMID for the new generation, we must flush necessary caches and TLBs on all
386 * CPUs.
387 */
388static bool need_new_vmid_gen(struct kvm *kvm)
389{
390 return unlikely(kvm->arch.vmid_gen != atomic64_read(&kvm_vmid_gen));
391}
392
393/**
394 * update_vttbr - Update the VTTBR with a valid VMID before the guest runs
395 * @kvm The guest that we are about to run
396 *
397 * Called from kvm_arch_vcpu_ioctl_run before entering the guest to ensure the
398 * VM has a valid VMID, otherwise assigns a new one and flushes corresponding
399 * caches and TLBs.
400 */
401static void update_vttbr(struct kvm *kvm)
402{
403 phys_addr_t pgd_phys;
404 u64 vmid;
405
406 if (!need_new_vmid_gen(kvm))
407 return;
408
409 spin_lock(&kvm_vmid_lock);
410
411 /*
412 * We need to re-check the vmid_gen here to ensure that if another vcpu
413 * already allocated a valid vmid for this vm, then this vcpu should
414 * use the same vmid.
415 */
416 if (!need_new_vmid_gen(kvm)) {
417 spin_unlock(&kvm_vmid_lock);
418 return;
419 }
420
421 /* First user of a new VMID generation? */
422 if (unlikely(kvm_next_vmid == 0)) {
423 atomic64_inc(&kvm_vmid_gen);
424 kvm_next_vmid = 1;
425
426 /*
427 * On SMP we know no other CPUs can use this CPU's or each
428 * other's VMID after force_vm_exit returns since the
429 * kvm_vmid_lock blocks them from reentry to the guest.
430 */
431 force_vm_exit(cpu_all_mask);
432 /*
433 * Now broadcast TLB + ICACHE invalidation over the inner
434 * shareable domain to make sure all data structures are
435 * clean.
436 */
437 kvm_call_hyp(__kvm_flush_vm_context);
438 }
439
440 kvm->arch.vmid_gen = atomic64_read(&kvm_vmid_gen);
441 kvm->arch.vmid = kvm_next_vmid;
442 kvm_next_vmid++;
Vladimir Murzin20475f72015-11-16 11:28:18 +0000443 kvm_next_vmid &= (1 << kvm_vmid_bits) - 1;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500444
445 /* update vttbr to be used with the new vmid */
Christoffer Dall38f791a2014-10-10 12:14:28 +0200446 pgd_phys = virt_to_phys(kvm_get_hwpgd(kvm));
Joel Schoppdbff1242014-07-09 11:17:04 -0500447 BUG_ON(pgd_phys & ~VTTBR_BADDR_MASK);
Vladimir Murzin20475f72015-11-16 11:28:18 +0000448 vmid = ((u64)(kvm->arch.vmid) << VTTBR_VMID_SHIFT) & VTTBR_VMID_MASK(kvm_vmid_bits);
Joel Schoppdbff1242014-07-09 11:17:04 -0500449 kvm->arch.vttbr = pgd_phys | vmid;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500450
451 spin_unlock(&kvm_vmid_lock);
452}
453
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500454static int kvm_vcpu_first_run_init(struct kvm_vcpu *vcpu)
455{
Christoffer Dall05971122014-12-12 21:19:23 +0100456 struct kvm *kvm = vcpu->kvm;
Christoffer Dalle1ba0202013-09-23 14:55:55 -0700457 int ret;
458
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500459 if (likely(vcpu->arch.has_run_once))
460 return 0;
461
462 vcpu->arch.has_run_once = true;
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500463
464 /*
Peter Maydell6d3cfbe2014-12-04 15:02:24 +0000465 * Map the VGIC hardware resources before running a vcpu the first
466 * time on this VM.
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500467 */
Pavel Fedinc2f58512015-08-05 11:53:57 +0100468 if (unlikely(irqchip_in_kernel(kvm) && !vgic_ready(kvm))) {
Christoffer Dall05971122014-12-12 21:19:23 +0100469 ret = kvm_vgic_map_resources(kvm);
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500470 if (ret)
471 return ret;
472 }
473
Christoffer Dall05971122014-12-12 21:19:23 +0100474 /*
475 * Enable the arch timers only if we have an in-kernel VGIC
476 * and it has been properly initialized, since we cannot handle
477 * interrupts from the virtual timer with a userspace gic.
478 */
479 if (irqchip_in_kernel(kvm) && vgic_initialized(kvm))
480 kvm_timer_enable(kvm);
481
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500482 return 0;
483}
484
Eric Augerc1426e42015-03-04 11:14:34 +0100485bool kvm_arch_intc_initialized(struct kvm *kvm)
486{
487 return vgic_initialized(kvm);
488}
489
Eric Auger3b928302015-09-25 23:41:17 +0200490static void kvm_arm_halt_guest(struct kvm *kvm) __maybe_unused;
491static void kvm_arm_resume_guest(struct kvm *kvm) __maybe_unused;
492
493static void kvm_arm_halt_guest(struct kvm *kvm)
494{
495 int i;
496 struct kvm_vcpu *vcpu;
497
498 kvm_for_each_vcpu(i, vcpu, kvm)
499 vcpu->arch.pause = true;
500 force_vm_exit(cpu_all_mask);
501}
502
503static void kvm_arm_resume_guest(struct kvm *kvm)
504{
505 int i;
506 struct kvm_vcpu *vcpu;
507
508 kvm_for_each_vcpu(i, vcpu, kvm) {
509 wait_queue_head_t *wq = kvm_arch_vcpu_wq(vcpu);
510
511 vcpu->arch.pause = false;
512 wake_up_interruptible(wq);
513 }
514}
515
Eric Auger37815282015-09-25 23:41:14 +0200516static void vcpu_sleep(struct kvm_vcpu *vcpu)
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500517{
518 wait_queue_head_t *wq = kvm_arch_vcpu_wq(vcpu);
519
Eric Auger3b928302015-09-25 23:41:17 +0200520 wait_event_interruptible(*wq, ((!vcpu->arch.power_off) &&
521 (!vcpu->arch.pause)));
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500522}
523
Andre Przywarae8180dc2013-05-09 00:28:06 +0200524static int kvm_vcpu_initialized(struct kvm_vcpu *vcpu)
525{
526 return vcpu->arch.target >= 0;
527}
528
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500529/**
530 * kvm_arch_vcpu_ioctl_run - the main VCPU run function to execute guest code
531 * @vcpu: The VCPU pointer
532 * @run: The kvm_run structure pointer used for userspace state exchange
533 *
534 * This function is called through the VCPU_RUN ioctl called from user space. It
535 * will execute VM code in a loop until the time slice for the process is used
536 * or some emulation is needed from user space in which case the function will
537 * return with return value 0 and with the kvm_run structure filled in with the
538 * required data for the requested emulation.
539 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500540int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
541{
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500542 int ret;
543 sigset_t sigsaved;
544
Andre Przywarae8180dc2013-05-09 00:28:06 +0200545 if (unlikely(!kvm_vcpu_initialized(vcpu)))
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500546 return -ENOEXEC;
547
548 ret = kvm_vcpu_first_run_init(vcpu);
549 if (ret)
550 return ret;
551
Christoffer Dall45e96ea2013-01-20 18:43:58 -0500552 if (run->exit_reason == KVM_EXIT_MMIO) {
553 ret = kvm_handle_mmio_return(vcpu, vcpu->run);
554 if (ret)
555 return ret;
556 }
557
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500558 if (vcpu->sigset_active)
559 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
560
561 ret = 1;
562 run->exit_reason = KVM_EXIT_UNKNOWN;
563 while (ret > 0) {
564 /*
565 * Check conditions before entering the guest
566 */
567 cond_resched();
568
569 update_vttbr(vcpu->kvm);
570
Eric Auger3b928302015-09-25 23:41:17 +0200571 if (vcpu->arch.power_off || vcpu->arch.pause)
Eric Auger37815282015-09-25 23:41:14 +0200572 vcpu_sleep(vcpu);
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500573
Marc Zyngierabdf5842015-06-08 15:00:28 +0100574 /*
Marc Zyngierabdf5842015-06-08 15:00:28 +0100575 * Preparing the interrupts to be injected also
576 * involves poking the GIC, which must be done in a
577 * non-preemptible context.
578 */
579 preempt_disable();
Christoffer Dall7e16aa82015-11-24 10:31:07 +0100580 kvm_timer_flush_hwstate(vcpu);
Marc Zyngier9a99d052015-06-05 09:33:28 +0100581 kvm_vgic_flush_hwstate(vcpu);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500582
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500583 local_irq_disable();
584
585 /*
586 * Re-check atomic conditions
587 */
588 if (signal_pending(current)) {
589 ret = -EINTR;
590 run->exit_reason = KVM_EXIT_INTR;
591 }
592
Eric Auger101d3da2015-09-25 23:41:16 +0200593 if (ret <= 0 || need_new_vmid_gen(vcpu->kvm) ||
Eric Auger3b928302015-09-25 23:41:17 +0200594 vcpu->arch.power_off || vcpu->arch.pause) {
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500595 local_irq_enable();
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200596 kvm_timer_sync_hwstate(vcpu);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500597 kvm_vgic_sync_hwstate(vcpu);
Marc Zyngierabdf5842015-06-08 15:00:28 +0100598 preempt_enable();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500599 continue;
600 }
601
Alex Bennée56c7f5e2015-07-07 17:29:56 +0100602 kvm_arm_setup_debug(vcpu);
603
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500604 /**************************************************************
605 * Enter the guest
606 */
607 trace_kvm_entry(*vcpu_pc(vcpu));
Christian Borntraegerccf73aaf2015-04-30 13:43:31 +0200608 __kvm_guest_enter();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500609 vcpu->mode = IN_GUEST_MODE;
610
611 ret = kvm_call_hyp(__kvm_vcpu_run, vcpu);
612
613 vcpu->mode = OUTSIDE_GUEST_MODE;
Amit Tomarb19e6892015-11-26 10:09:43 +0000614 vcpu->stat.exits++;
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100615 /*
616 * Back from guest
617 *************************************************************/
618
Alex Bennée56c7f5e2015-07-07 17:29:56 +0100619 kvm_arm_clear_debug(vcpu);
620
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500621 /*
622 * We may have taken a host interrupt in HYP mode (ie
623 * while executing the guest). This interrupt is still
624 * pending, as we haven't serviced it yet!
625 *
626 * We're now back in SVC mode, with interrupts
627 * disabled. Enabling the interrupts now will have
628 * the effect of taking the interrupt again, in SVC
629 * mode this time.
630 */
631 local_irq_enable();
632
633 /*
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100634 * We do local_irq_enable() before calling kvm_guest_exit() so
635 * that if a timer interrupt hits while running the guest we
636 * account that tick as being spent in the guest. We enable
637 * preemption after calling kvm_guest_exit() so that if we get
638 * preempted we make sure ticks after that is not counted as
639 * guest time.
640 */
641 kvm_guest_exit();
Christoffer Dallb5905dc2015-08-30 15:55:22 +0200642 trace_kvm_exit(ret, kvm_vcpu_trap_get_class(vcpu), *vcpu_pc(vcpu));
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100643
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200644 /*
645 * We must sync the timer state before the vgic state so that
646 * the vgic can properly sample the updated state of the
647 * interrupt line.
648 */
649 kvm_timer_sync_hwstate(vcpu);
650
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500651 kvm_vgic_sync_hwstate(vcpu);
Marc Zyngierabdf5842015-06-08 15:00:28 +0100652
653 preempt_enable();
654
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500655 ret = handle_exit(vcpu, run, ret);
656 }
657
658 if (vcpu->sigset_active)
659 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
660 return ret;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500661}
662
Christoffer Dall86ce85352013-01-20 18:28:08 -0500663static int vcpu_interrupt_line(struct kvm_vcpu *vcpu, int number, bool level)
664{
665 int bit_index;
666 bool set;
667 unsigned long *ptr;
668
669 if (number == KVM_ARM_IRQ_CPU_IRQ)
670 bit_index = __ffs(HCR_VI);
671 else /* KVM_ARM_IRQ_CPU_FIQ */
672 bit_index = __ffs(HCR_VF);
673
674 ptr = (unsigned long *)&vcpu->arch.irq_lines;
675 if (level)
676 set = test_and_set_bit(bit_index, ptr);
677 else
678 set = test_and_clear_bit(bit_index, ptr);
679
680 /*
681 * If we didn't change anything, no need to wake up or kick other CPUs
682 */
683 if (set == level)
684 return 0;
685
686 /*
687 * The vcpu irq_lines field was updated, wake up sleeping VCPUs and
688 * trigger a world-switch round on the running physical CPU to set the
689 * virtual IRQ/FIQ fields in the HCR appropriately.
690 */
691 kvm_vcpu_kick(vcpu);
692
693 return 0;
694}
695
Alexander Graf79558f12013-04-16 19:21:41 +0200696int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level,
697 bool line_status)
Christoffer Dall86ce85352013-01-20 18:28:08 -0500698{
699 u32 irq = irq_level->irq;
700 unsigned int irq_type, vcpu_idx, irq_num;
701 int nrcpus = atomic_read(&kvm->online_vcpus);
702 struct kvm_vcpu *vcpu = NULL;
703 bool level = irq_level->level;
704
705 irq_type = (irq >> KVM_ARM_IRQ_TYPE_SHIFT) & KVM_ARM_IRQ_TYPE_MASK;
706 vcpu_idx = (irq >> KVM_ARM_IRQ_VCPU_SHIFT) & KVM_ARM_IRQ_VCPU_MASK;
707 irq_num = (irq >> KVM_ARM_IRQ_NUM_SHIFT) & KVM_ARM_IRQ_NUM_MASK;
708
709 trace_kvm_irq_line(irq_type, vcpu_idx, irq_num, irq_level->level);
710
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500711 switch (irq_type) {
712 case KVM_ARM_IRQ_TYPE_CPU:
713 if (irqchip_in_kernel(kvm))
714 return -ENXIO;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500715
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500716 if (vcpu_idx >= nrcpus)
717 return -EINVAL;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500718
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500719 vcpu = kvm_get_vcpu(kvm, vcpu_idx);
720 if (!vcpu)
721 return -EINVAL;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500722
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500723 if (irq_num > KVM_ARM_IRQ_CPU_FIQ)
724 return -EINVAL;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500725
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500726 return vcpu_interrupt_line(vcpu, irq_num, level);
727 case KVM_ARM_IRQ_TYPE_PPI:
728 if (!irqchip_in_kernel(kvm))
729 return -ENXIO;
730
731 if (vcpu_idx >= nrcpus)
732 return -EINVAL;
733
734 vcpu = kvm_get_vcpu(kvm, vcpu_idx);
735 if (!vcpu)
736 return -EINVAL;
737
738 if (irq_num < VGIC_NR_SGIS || irq_num >= VGIC_NR_PRIVATE_IRQS)
739 return -EINVAL;
740
741 return kvm_vgic_inject_irq(kvm, vcpu->vcpu_id, irq_num, level);
742 case KVM_ARM_IRQ_TYPE_SPI:
743 if (!irqchip_in_kernel(kvm))
744 return -ENXIO;
745
Andre Przywarafd1d0dd2015-04-10 16:17:59 +0100746 if (irq_num < VGIC_NR_PRIVATE_IRQS)
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500747 return -EINVAL;
748
749 return kvm_vgic_inject_irq(kvm, 0, irq_num, level);
750 }
751
752 return -EINVAL;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500753}
754
Christoffer Dallf7fa034d2014-10-16 16:40:53 +0200755static int kvm_vcpu_set_target(struct kvm_vcpu *vcpu,
756 const struct kvm_vcpu_init *init)
757{
758 unsigned int i;
759 int phys_target = kvm_target_cpu();
760
761 if (init->target != phys_target)
762 return -EINVAL;
763
764 /*
765 * Secondary and subsequent calls to KVM_ARM_VCPU_INIT must
766 * use the same target.
767 */
768 if (vcpu->arch.target != -1 && vcpu->arch.target != init->target)
769 return -EINVAL;
770
771 /* -ENOENT for unknown features, -EINVAL for invalid combinations. */
772 for (i = 0; i < sizeof(init->features) * 8; i++) {
773 bool set = (init->features[i / 32] & (1 << (i % 32)));
774
775 if (set && i >= KVM_VCPU_MAX_FEATURES)
776 return -ENOENT;
777
778 /*
779 * Secondary and subsequent calls to KVM_ARM_VCPU_INIT must
780 * use the same feature set.
781 */
782 if (vcpu->arch.target != -1 && i < KVM_VCPU_MAX_FEATURES &&
783 test_bit(i, vcpu->arch.features) != set)
784 return -EINVAL;
785
786 if (set)
787 set_bit(i, vcpu->arch.features);
788 }
789
790 vcpu->arch.target = phys_target;
791
792 /* Now we know what it is, we can reset it. */
793 return kvm_reset_vcpu(vcpu);
794}
795
796
Christoffer Dall478a8232013-11-19 17:43:19 -0800797static int kvm_arch_vcpu_ioctl_vcpu_init(struct kvm_vcpu *vcpu,
798 struct kvm_vcpu_init *init)
799{
800 int ret;
801
802 ret = kvm_vcpu_set_target(vcpu, init);
803 if (ret)
804 return ret;
805
Christoffer Dall957db102014-11-27 10:35:03 +0100806 /*
807 * Ensure a rebooted VM will fault in RAM pages and detect if the
808 * guest MMU is turned off and flush the caches as needed.
809 */
810 if (vcpu->arch.has_run_once)
811 stage2_unmap_vm(vcpu->kvm);
812
Christoffer Dallb856a592014-10-16 17:21:16 +0200813 vcpu_reset_hcr(vcpu);
814
Christoffer Dall478a8232013-11-19 17:43:19 -0800815 /*
Eric Auger37815282015-09-25 23:41:14 +0200816 * Handle the "start in power-off" case.
Christoffer Dall478a8232013-11-19 17:43:19 -0800817 */
Christoffer Dall03f1d4c2014-12-02 15:27:51 +0100818 if (test_bit(KVM_ARM_VCPU_POWER_OFF, vcpu->arch.features))
Eric Auger37815282015-09-25 23:41:14 +0200819 vcpu->arch.power_off = true;
Christoffer Dall3ad8b3d2014-10-16 16:14:43 +0200820 else
Eric Auger37815282015-09-25 23:41:14 +0200821 vcpu->arch.power_off = false;
Christoffer Dall478a8232013-11-19 17:43:19 -0800822
823 return 0;
824}
825
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500826long kvm_arch_vcpu_ioctl(struct file *filp,
827 unsigned int ioctl, unsigned long arg)
828{
829 struct kvm_vcpu *vcpu = filp->private_data;
830 void __user *argp = (void __user *)arg;
831
832 switch (ioctl) {
833 case KVM_ARM_VCPU_INIT: {
834 struct kvm_vcpu_init init;
835
836 if (copy_from_user(&init, argp, sizeof(init)))
837 return -EFAULT;
838
Christoffer Dall478a8232013-11-19 17:43:19 -0800839 return kvm_arch_vcpu_ioctl_vcpu_init(vcpu, &init);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500840 }
841 case KVM_SET_ONE_REG:
842 case KVM_GET_ONE_REG: {
843 struct kvm_one_reg reg;
Andre Przywarae8180dc2013-05-09 00:28:06 +0200844
845 if (unlikely(!kvm_vcpu_initialized(vcpu)))
846 return -ENOEXEC;
847
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500848 if (copy_from_user(&reg, argp, sizeof(reg)))
849 return -EFAULT;
850 if (ioctl == KVM_SET_ONE_REG)
851 return kvm_arm_set_reg(vcpu, &reg);
852 else
853 return kvm_arm_get_reg(vcpu, &reg);
854 }
855 case KVM_GET_REG_LIST: {
856 struct kvm_reg_list __user *user_list = argp;
857 struct kvm_reg_list reg_list;
858 unsigned n;
859
Andre Przywarae8180dc2013-05-09 00:28:06 +0200860 if (unlikely(!kvm_vcpu_initialized(vcpu)))
861 return -ENOEXEC;
862
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500863 if (copy_from_user(&reg_list, user_list, sizeof(reg_list)))
864 return -EFAULT;
865 n = reg_list.n;
866 reg_list.n = kvm_arm_num_regs(vcpu);
867 if (copy_to_user(user_list, &reg_list, sizeof(reg_list)))
868 return -EFAULT;
869 if (n < reg_list.n)
870 return -E2BIG;
871 return kvm_arm_copy_reg_indices(vcpu, user_list->reg);
872 }
873 default:
874 return -EINVAL;
875 }
876}
877
Mario Smarduch53c810c2015-01-15 15:58:57 -0800878/**
879 * kvm_vm_ioctl_get_dirty_log - get and clear the log of dirty pages in a slot
880 * @kvm: kvm instance
881 * @log: slot id and address to which we copy the log
882 *
883 * Steps 1-4 below provide general overview of dirty page logging. See
884 * kvm_get_dirty_log_protect() function description for additional details.
885 *
886 * We call kvm_get_dirty_log_protect() to handle steps 1-3, upon return we
887 * always flush the TLB (step 4) even if previous step failed and the dirty
888 * bitmap may be corrupt. Regardless of previous outcome the KVM logging API
889 * does not preclude user space subsequent dirty log read. Flushing TLB ensures
890 * writes will be marked dirty for next log read.
891 *
892 * 1. Take a snapshot of the bit and clear it if needed.
893 * 2. Write protect the corresponding page.
894 * 3. Copy the snapshot to the userspace.
895 * 4. Flush TLB's if needed.
896 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500897int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
898{
Mario Smarduch53c810c2015-01-15 15:58:57 -0800899 bool is_dirty = false;
900 int r;
901
902 mutex_lock(&kvm->slots_lock);
903
904 r = kvm_get_dirty_log_protect(kvm, log, &is_dirty);
905
906 if (is_dirty)
907 kvm_flush_remote_tlbs(kvm);
908
909 mutex_unlock(&kvm->slots_lock);
910 return r;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500911}
912
Christoffer Dall3401d5462013-01-23 13:18:04 -0500913static int kvm_vm_ioctl_set_device_addr(struct kvm *kvm,
914 struct kvm_arm_device_addr *dev_addr)
915{
Christoffer Dall330690c2013-01-21 19:36:13 -0500916 unsigned long dev_id, type;
917
918 dev_id = (dev_addr->id & KVM_ARM_DEVICE_ID_MASK) >>
919 KVM_ARM_DEVICE_ID_SHIFT;
920 type = (dev_addr->id & KVM_ARM_DEVICE_TYPE_MASK) >>
921 KVM_ARM_DEVICE_TYPE_SHIFT;
922
923 switch (dev_id) {
924 case KVM_ARM_DEVICE_VGIC_V2:
Pavel Fedinc7da6fa2015-12-18 14:38:43 +0300925 if (!vgic_present)
926 return -ENXIO;
Christoffer Dallce01e4e2013-09-23 14:55:56 -0700927 return kvm_vgic_addr(kvm, type, &dev_addr->addr, true);
Christoffer Dall330690c2013-01-21 19:36:13 -0500928 default:
929 return -ENODEV;
930 }
Christoffer Dall3401d5462013-01-23 13:18:04 -0500931}
932
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500933long kvm_arch_vm_ioctl(struct file *filp,
934 unsigned int ioctl, unsigned long arg)
935{
Christoffer Dall3401d5462013-01-23 13:18:04 -0500936 struct kvm *kvm = filp->private_data;
937 void __user *argp = (void __user *)arg;
938
939 switch (ioctl) {
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500940 case KVM_CREATE_IRQCHIP: {
Pavel Fedinc7da6fa2015-12-18 14:38:43 +0300941 if (!vgic_present)
942 return -ENXIO;
Paolo Bonzini69ff5c62015-03-05 12:26:06 +0100943 return kvm_vgic_create(kvm, KVM_DEV_TYPE_ARM_VGIC_V2);
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500944 }
Christoffer Dall3401d5462013-01-23 13:18:04 -0500945 case KVM_ARM_SET_DEVICE_ADDR: {
946 struct kvm_arm_device_addr dev_addr;
947
948 if (copy_from_user(&dev_addr, argp, sizeof(dev_addr)))
949 return -EFAULT;
950 return kvm_vm_ioctl_set_device_addr(kvm, &dev_addr);
951 }
Anup Patel42c4e0c2013-09-30 14:20:07 +0530952 case KVM_ARM_PREFERRED_TARGET: {
953 int err;
954 struct kvm_vcpu_init init;
955
956 err = kvm_vcpu_preferred_target(&init);
957 if (err)
958 return err;
959
960 if (copy_to_user(argp, &init, sizeof(init)))
961 return -EFAULT;
962
963 return 0;
964 }
Christoffer Dall3401d5462013-01-23 13:18:04 -0500965 default:
966 return -EINVAL;
967 }
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500968}
969
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100970static void cpu_init_hyp_mode(void *dummy)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500971{
Marc Zyngierdac288f2013-05-14 12:11:37 +0100972 phys_addr_t boot_pgd_ptr;
973 phys_addr_t pgd_ptr;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500974 unsigned long hyp_stack_ptr;
975 unsigned long stack_page;
976 unsigned long vector_ptr;
977
978 /* Switch from the HYP stub to our own HYP init vector */
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100979 __hyp_set_vectors(kvm_get_idmap_vector());
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500980
Marc Zyngierdac288f2013-05-14 12:11:37 +0100981 boot_pgd_ptr = kvm_mmu_get_boot_httbr();
982 pgd_ptr = kvm_mmu_get_httbr();
Christoph Lameter1436c1a2013-10-21 13:17:08 +0100983 stack_page = __this_cpu_read(kvm_arm_hyp_stack_page);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500984 hyp_stack_ptr = stack_page + PAGE_SIZE;
985 vector_ptr = (unsigned long)__kvm_hyp_vector;
986
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100987 __cpu_init_hyp_mode(boot_pgd_ptr, pgd_ptr, hyp_stack_ptr, vector_ptr);
Alex Bennée56c7f5e2015-07-07 17:29:56 +0100988
989 kvm_arm_init_debug();
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500990}
991
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100992static int hyp_init_cpu_notify(struct notifier_block *self,
993 unsigned long action, void *cpu)
994{
995 switch (action) {
996 case CPU_STARTING:
997 case CPU_STARTING_FROZEN:
Vladimir Murzin37a34ac2014-09-22 15:52:48 +0100998 if (__hyp_get_vectors() == hyp_default_vectors)
999 cpu_init_hyp_mode(NULL);
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001000 break;
1001 }
1002
1003 return NOTIFY_OK;
1004}
1005
1006static struct notifier_block hyp_init_cpu_nb = {
1007 .notifier_call = hyp_init_cpu_notify,
1008};
1009
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001010#ifdef CONFIG_CPU_PM
1011static int hyp_init_cpu_pm_notifier(struct notifier_block *self,
1012 unsigned long cmd,
1013 void *v)
1014{
Marc Zyngierb20c9f22014-02-26 18:47:36 +00001015 if (cmd == CPU_PM_EXIT &&
1016 __hyp_get_vectors() == hyp_default_vectors) {
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001017 cpu_init_hyp_mode(NULL);
1018 return NOTIFY_OK;
1019 }
1020
1021 return NOTIFY_DONE;
1022}
1023
1024static struct notifier_block hyp_init_cpu_pm_nb = {
1025 .notifier_call = hyp_init_cpu_pm_notifier,
1026};
1027
1028static void __init hyp_cpu_pm_init(void)
1029{
1030 cpu_pm_register_notifier(&hyp_init_cpu_pm_nb);
1031}
1032#else
1033static inline void hyp_cpu_pm_init(void)
1034{
1035}
1036#endif
1037
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001038/**
1039 * Inits Hyp-mode on all online CPUs
1040 */
1041static int init_hyp_mode(void)
1042{
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001043 int cpu;
1044 int err = 0;
1045
1046 /*
1047 * Allocate Hyp PGD and setup Hyp identity mapping
1048 */
1049 err = kvm_mmu_init();
1050 if (err)
1051 goto out_err;
1052
1053 /*
1054 * It is probably enough to obtain the default on one
1055 * CPU. It's unlikely to be different on the others.
1056 */
1057 hyp_default_vectors = __hyp_get_vectors();
1058
1059 /*
1060 * Allocate stack pages for Hypervisor-mode
1061 */
1062 for_each_possible_cpu(cpu) {
1063 unsigned long stack_page;
1064
1065 stack_page = __get_free_page(GFP_KERNEL);
1066 if (!stack_page) {
1067 err = -ENOMEM;
1068 goto out_free_stack_pages;
1069 }
1070
1071 per_cpu(kvm_arm_hyp_stack_page, cpu) = stack_page;
1072 }
1073
1074 /*
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001075 * Map the Hyp-code called directly from the host
1076 */
1077 err = create_hyp_mappings(__kvm_hyp_code_start, __kvm_hyp_code_end);
1078 if (err) {
1079 kvm_err("Cannot map world-switch code\n");
1080 goto out_free_mappings;
1081 }
1082
Marc Zyngier910917b2015-10-27 12:18:48 +00001083 err = create_hyp_mappings(__start_rodata, __end_rodata);
1084 if (err) {
1085 kvm_err("Cannot map rodata section\n");
1086 goto out_free_mappings;
1087 }
1088
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001089 /*
1090 * Map the Hyp stack pages
1091 */
1092 for_each_possible_cpu(cpu) {
1093 char *stack_page = (char *)per_cpu(kvm_arm_hyp_stack_page, cpu);
1094 err = create_hyp_mappings(stack_page, stack_page + PAGE_SIZE);
1095
1096 if (err) {
1097 kvm_err("Cannot map hyp stack\n");
1098 goto out_free_mappings;
1099 }
1100 }
1101
1102 /*
Marc Zyngier3de50da2013-04-08 16:47:19 +01001103 * Map the host CPU structures
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001104 */
Marc Zyngier3de50da2013-04-08 16:47:19 +01001105 kvm_host_cpu_state = alloc_percpu(kvm_cpu_context_t);
1106 if (!kvm_host_cpu_state) {
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001107 err = -ENOMEM;
Marc Zyngier3de50da2013-04-08 16:47:19 +01001108 kvm_err("Cannot allocate host CPU state\n");
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001109 goto out_free_mappings;
1110 }
1111
1112 for_each_possible_cpu(cpu) {
Marc Zyngier3de50da2013-04-08 16:47:19 +01001113 kvm_cpu_context_t *cpu_ctxt;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001114
Marc Zyngier3de50da2013-04-08 16:47:19 +01001115 cpu_ctxt = per_cpu_ptr(kvm_host_cpu_state, cpu);
1116 err = create_hyp_mappings(cpu_ctxt, cpu_ctxt + 1);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001117
1118 if (err) {
Marc Zyngier3de50da2013-04-08 16:47:19 +01001119 kvm_err("Cannot map host CPU state: %d\n", err);
1120 goto out_free_context;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001121 }
1122 }
1123
Marc Zyngier1a89dd92013-01-21 19:36:12 -05001124 /*
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001125 * Execute the init code on each CPU.
1126 */
1127 on_each_cpu(cpu_init_hyp_mode, NULL, 1);
1128
1129 /*
Marc Zyngier1a89dd92013-01-21 19:36:12 -05001130 * Init HYP view of VGIC
1131 */
1132 err = kvm_vgic_hyp_init();
Pavel Fedinc7da6fa2015-12-18 14:38:43 +03001133 switch (err) {
1134 case 0:
1135 vgic_present = true;
1136 break;
1137 case -ENODEV:
1138 case -ENXIO:
1139 vgic_present = false;
1140 break;
1141 default:
Marc Zyngier3de50da2013-04-08 16:47:19 +01001142 goto out_free_context;
Pavel Fedinc7da6fa2015-12-18 14:38:43 +03001143 }
Marc Zyngier1a89dd92013-01-21 19:36:12 -05001144
Marc Zyngier967f8422013-01-23 13:21:59 -05001145 /*
1146 * Init HYP architected timer support
1147 */
1148 err = kvm_timer_hyp_init();
1149 if (err)
Pavel Fedin399ea0f2015-10-06 11:14:35 +03001150 goto out_free_context;
Marc Zyngier967f8422013-01-23 13:21:59 -05001151
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001152#ifndef CONFIG_HOTPLUG_CPU
1153 free_boot_hyp_pgd();
1154#endif
1155
Marc Zyngier210552c2013-03-05 03:18:00 +00001156 kvm_perf_init();
1157
Vladimir Murzin20475f72015-11-16 11:28:18 +00001158 /* set size of VMID supported by CPU */
1159 kvm_vmid_bits = kvm_get_vmid_bits();
1160 kvm_info("%d-bit VMID\n", kvm_vmid_bits);
1161
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001162 kvm_info("Hyp mode initialized successfully\n");
Marc Zyngier210552c2013-03-05 03:18:00 +00001163
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001164 return 0;
Marc Zyngier3de50da2013-04-08 16:47:19 +01001165out_free_context:
1166 free_percpu(kvm_host_cpu_state);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001167out_free_mappings:
Marc Zyngier4f728272013-04-12 19:12:05 +01001168 free_hyp_pgds();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001169out_free_stack_pages:
1170 for_each_possible_cpu(cpu)
1171 free_page(per_cpu(kvm_arm_hyp_stack_page, cpu));
1172out_err:
1173 kvm_err("error initializing Hyp mode: %d\n", err);
1174 return err;
1175}
1176
Andre Przywarad4e071c2013-04-17 12:52:01 +02001177static void check_kvm_target_cpu(void *ret)
1178{
1179 *(int *)ret = kvm_target_cpu();
1180}
1181
Andre Przywara4429fc62014-06-02 15:37:13 +02001182struct kvm_vcpu *kvm_mpidr_to_vcpu(struct kvm *kvm, unsigned long mpidr)
1183{
1184 struct kvm_vcpu *vcpu;
1185 int i;
1186
1187 mpidr &= MPIDR_HWID_BITMASK;
1188 kvm_for_each_vcpu(i, vcpu, kvm) {
1189 if (mpidr == kvm_vcpu_get_mpidr_aff(vcpu))
1190 return vcpu;
1191 }
1192 return NULL;
1193}
1194
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001195/**
1196 * Initialize Hyp-mode and memory mappings on all CPUs.
1197 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001198int kvm_arch_init(void *opaque)
1199{
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001200 int err;
Andre Przywarad4e071c2013-04-17 12:52:01 +02001201 int ret, cpu;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001202
1203 if (!is_hyp_mode_available()) {
1204 kvm_err("HYP mode not available\n");
1205 return -ENODEV;
1206 }
1207
Andre Przywarad4e071c2013-04-17 12:52:01 +02001208 for_each_online_cpu(cpu) {
1209 smp_call_function_single(cpu, check_kvm_target_cpu, &ret, 1);
1210 if (ret < 0) {
1211 kvm_err("Error, CPU %d not supported!\n", cpu);
1212 return -ENODEV;
1213 }
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001214 }
1215
Srivatsa S. Bhat81468752014-03-18 15:53:05 +05301216 cpu_notifier_register_begin();
1217
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001218 err = init_hyp_mode();
1219 if (err)
1220 goto out_err;
1221
Srivatsa S. Bhat81468752014-03-18 15:53:05 +05301222 err = __register_cpu_notifier(&hyp_init_cpu_nb);
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001223 if (err) {
1224 kvm_err("Cannot register HYP init CPU notifier (%d)\n", err);
1225 goto out_err;
1226 }
1227
Srivatsa S. Bhat81468752014-03-18 15:53:05 +05301228 cpu_notifier_register_done();
1229
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001230 hyp_cpu_pm_init();
1231
Christoffer Dall5b3e5e52013-01-20 18:28:09 -05001232 kvm_coproc_table_init();
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001233 return 0;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001234out_err:
Srivatsa S. Bhat81468752014-03-18 15:53:05 +05301235 cpu_notifier_register_done();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001236 return err;
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001237}
1238
1239/* NOP: Compiling as a module not supported */
1240void kvm_arch_exit(void)
1241{
Marc Zyngier210552c2013-03-05 03:18:00 +00001242 kvm_perf_teardown();
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001243}
1244
1245static int arm_init(void)
1246{
1247 int rc = kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE);
1248 return rc;
1249}
1250
1251module_init(arm_init);