blob: 6e35d1d7893ed31c86bfe9ee62f7b9266055a921 [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);
62static u8 kvm_next_vmid;
63static DEFINE_SPINLOCK(kvm_vmid_lock);
Christoffer Dall342cd0a2013-01-20 18:28:06 -050064
Marc Zyngier1638a122013-01-21 19:36:11 -050065static void kvm_arm_set_running_vcpu(struct kvm_vcpu *vcpu)
66{
67 BUG_ON(preemptible());
Christoph Lameter1436c1a2013-10-21 13:17:08 +010068 __this_cpu_write(kvm_arm_running_vcpu, vcpu);
Marc Zyngier1638a122013-01-21 19:36:11 -050069}
70
71/**
72 * kvm_arm_get_running_vcpu - get the vcpu running on the current CPU.
73 * Must be called from non-preemptible context
74 */
75struct kvm_vcpu *kvm_arm_get_running_vcpu(void)
76{
77 BUG_ON(preemptible());
Christoph Lameter1436c1a2013-10-21 13:17:08 +010078 return __this_cpu_read(kvm_arm_running_vcpu);
Marc Zyngier1638a122013-01-21 19:36:11 -050079}
80
81/**
82 * kvm_arm_get_running_vcpus - get the per-CPU array of currently running vcpus.
83 */
Will Deacon4000be42014-08-26 15:13:21 +010084struct kvm_vcpu * __percpu *kvm_get_running_vcpus(void)
Marc Zyngier1638a122013-01-21 19:36:11 -050085{
86 return &kvm_arm_running_vcpu;
87}
88
Radim Krčmář13a34e02014-08-28 15:13:03 +020089int kvm_arch_hardware_enable(void)
Christoffer Dall749cf76c2013-01-20 18:28:06 -050090{
91 return 0;
92}
93
94int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
95{
96 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
97}
98
Christoffer Dall749cf76c2013-01-20 18:28:06 -050099int kvm_arch_hardware_setup(void)
100{
101 return 0;
102}
103
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500104void kvm_arch_check_processor_compat(void *rtn)
105{
106 *(int *)rtn = 0;
107}
108
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500109
Christoffer Dalld5d81842013-01-20 18:28:07 -0500110/**
111 * kvm_arch_init_vm - initializes a VM data structure
112 * @kvm: pointer to the KVM struct
113 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500114int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
115{
Christoffer Dalld5d81842013-01-20 18:28:07 -0500116 int ret = 0;
117
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500118 if (type)
119 return -EINVAL;
120
Christoffer Dalld5d81842013-01-20 18:28:07 -0500121 ret = kvm_alloc_stage2_pgd(kvm);
122 if (ret)
123 goto out_fail_alloc;
124
125 ret = create_hyp_mappings(kvm, kvm + 1);
126 if (ret)
127 goto out_free_stage2_pgd;
128
Marc Zyngier6c3d63c2014-06-23 17:37:18 +0100129 kvm_vgic_early_init(kvm);
Christoffer Dalla1a64382013-11-16 10:51:25 -0800130 kvm_timer_init(kvm);
131
Christoffer Dalld5d81842013-01-20 18:28:07 -0500132 /* Mark the initial VMID generation invalid */
133 kvm->arch.vmid_gen = 0;
134
Andre Przywara3caa2d82014-06-02 16:26:01 +0200135 /* The maximum number of VCPUs is limited by the host's GIC model */
136 kvm->arch.max_vcpus = kvm_vgic_get_max_vcpus();
137
Christoffer Dalld5d81842013-01-20 18:28:07 -0500138 return ret;
139out_free_stage2_pgd:
140 kvm_free_stage2_pgd(kvm);
141out_fail_alloc:
142 return ret;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500143}
144
145int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
146{
147 return VM_FAULT_SIGBUS;
148}
149
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500150
Christoffer Dalld5d81842013-01-20 18:28:07 -0500151/**
152 * kvm_arch_destroy_vm - destroy the VM data structure
153 * @kvm: pointer to the KVM struct
154 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500155void kvm_arch_destroy_vm(struct kvm *kvm)
156{
157 int i;
158
Christoffer Dalld5d81842013-01-20 18:28:07 -0500159 kvm_free_stage2_pgd(kvm);
160
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500161 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
162 if (kvm->vcpus[i]) {
163 kvm_arch_vcpu_free(kvm->vcpus[i]);
164 kvm->vcpus[i] = NULL;
165 }
166 }
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100167
168 kvm_vgic_destroy(kvm);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500169}
170
Alexander Graf784aa3d2014-07-14 18:27:35 +0200171int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500172{
173 int r;
174 switch (ext) {
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500175 case KVM_CAP_IRQCHIP:
Nikolay Nikolaevd44758c2015-01-24 12:00:02 +0000176 case KVM_CAP_IOEVENTFD:
Christoffer Dall73306722013-10-25 17:29:18 +0100177 case KVM_CAP_DEVICE_CTRL:
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500178 case KVM_CAP_USER_MEMORY:
179 case KVM_CAP_SYNC_MMU:
180 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
181 case KVM_CAP_ONE_REG:
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500182 case KVM_CAP_ARM_PSCI:
Anup Patel4447a202014-04-29 11:24:25 +0530183 case KVM_CAP_ARM_PSCI_0_2:
Christoffer Dall98047882014-08-19 12:18:04 +0200184 case KVM_CAP_READONLY_MEM:
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000185 case KVM_CAP_MP_STATE:
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500186 r = 1;
187 break;
188 case KVM_CAP_COALESCED_MMIO:
189 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
190 break;
Christoffer Dall3401d5462013-01-23 13:18:04 -0500191 case KVM_CAP_ARM_SET_DEVICE_ADDR:
192 r = 1;
Marc Zyngierca46e102013-04-03 10:43:13 +0100193 break;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500194 case KVM_CAP_NR_VCPUS:
195 r = num_online_cpus();
196 break;
197 case KVM_CAP_MAX_VCPUS:
198 r = KVM_MAX_VCPUS;
199 break;
200 default:
Marc Zyngier17b1e312013-04-08 16:47:18 +0100201 r = kvm_arch_dev_ioctl_check_extension(ext);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500202 break;
203 }
204 return r;
205}
206
207long kvm_arch_dev_ioctl(struct file *filp,
208 unsigned int ioctl, unsigned long arg)
209{
210 return -EINVAL;
211}
212
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500213
214struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
215{
216 int err;
217 struct kvm_vcpu *vcpu;
218
Christoffer Dall716139d2014-12-09 14:33:45 +0100219 if (irqchip_in_kernel(kvm) && vgic_initialized(kvm)) {
220 err = -EBUSY;
221 goto out;
222 }
223
Andre Przywara3caa2d82014-06-02 16:26:01 +0200224 if (id >= kvm->arch.max_vcpus) {
225 err = -EINVAL;
226 goto out;
227 }
228
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500229 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
230 if (!vcpu) {
231 err = -ENOMEM;
232 goto out;
233 }
234
235 err = kvm_vcpu_init(vcpu, kvm, id);
236 if (err)
237 goto free_vcpu;
238
Christoffer Dalld5d81842013-01-20 18:28:07 -0500239 err = create_hyp_mappings(vcpu, vcpu + 1);
240 if (err)
241 goto vcpu_uninit;
242
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500243 return vcpu;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500244vcpu_uninit:
245 kvm_vcpu_uninit(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500246free_vcpu:
247 kmem_cache_free(kvm_vcpu_cache, vcpu);
248out:
249 return ERR_PTR(err);
250}
251
Dominik Dingel31928aa2014-12-04 15:47:07 +0100252void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500253{
Marc Zyngier6c3d63c2014-06-23 17:37:18 +0100254 kvm_vgic_vcpu_early_init(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500255}
256
257void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
258{
Christoffer Dalld5d81842013-01-20 18:28:07 -0500259 kvm_mmu_free_memory_caches(vcpu);
Marc Zyngier967f8422013-01-23 13:21:59 -0500260 kvm_timer_vcpu_terminate(vcpu);
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100261 kvm_vgic_vcpu_destroy(vcpu);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500262 kmem_cache_free(kvm_vcpu_cache, vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500263}
264
265void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
266{
267 kvm_arch_vcpu_free(vcpu);
268}
269
270int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
271{
Christoffer Dall1a748472015-03-13 17:02:55 +0000272 return kvm_timer_should_fire(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500273}
274
Christoffer Dalld35268d2015-08-25 19:48:21 +0200275void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu)
276{
277 kvm_timer_schedule(vcpu);
278}
279
280void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu)
281{
282 kvm_timer_unschedule(vcpu);
283}
284
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500285int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
286{
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500287 /* Force users to call KVM_ARM_VCPU_INIT */
288 vcpu->arch.target = -1;
Christoffer Dallf7fa034d2014-10-16 16:40:53 +0200289 bitmap_zero(vcpu->arch.features, KVM_VCPU_MAX_FEATURES);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500290
Marc Zyngier967f8422013-01-23 13:21:59 -0500291 /* Set up the timer */
292 kvm_timer_vcpu_init(vcpu);
293
Alex Bennée84e690b2015-07-07 17:30:00 +0100294 kvm_arm_reset_debug_ptr(vcpu);
295
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500296 return 0;
297}
298
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500299void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
300{
Christoffer Dall86ce85352013-01-20 18:28:08 -0500301 vcpu->cpu = cpu;
Marc Zyngier3de50da2013-04-08 16:47:19 +0100302 vcpu->arch.host_cpu_context = this_cpu_ptr(kvm_host_cpu_state);
Christoffer Dall5b3e5e52013-01-20 18:28:09 -0500303
Marc Zyngier1638a122013-01-21 19:36:11 -0500304 kvm_arm_set_running_vcpu(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500305}
306
307void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
308{
Christoffer Dalle9b152c2013-12-11 20:29:11 -0800309 /*
310 * The arch-generic KVM code expects the cpu field of a vcpu to be -1
311 * if the vcpu is no longer assigned to a cpu. This is used for the
312 * optimized make_all_cpus_request path.
313 */
314 vcpu->cpu = -1;
315
Marc Zyngier1638a122013-01-21 19:36:11 -0500316 kvm_arm_set_running_vcpu(NULL);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500317}
318
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500319int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
320 struct kvm_mp_state *mp_state)
321{
Eric Auger37815282015-09-25 23:41:14 +0200322 if (vcpu->arch.power_off)
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000323 mp_state->mp_state = KVM_MP_STATE_STOPPED;
324 else
325 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
326
327 return 0;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500328}
329
330int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
331 struct kvm_mp_state *mp_state)
332{
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000333 switch (mp_state->mp_state) {
334 case KVM_MP_STATE_RUNNABLE:
Eric Auger37815282015-09-25 23:41:14 +0200335 vcpu->arch.power_off = false;
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000336 break;
337 case KVM_MP_STATE_STOPPED:
Eric Auger37815282015-09-25 23:41:14 +0200338 vcpu->arch.power_off = true;
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000339 break;
340 default:
341 return -EINVAL;
342 }
343
344 return 0;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500345}
346
Christoffer Dall5b3e5e52013-01-20 18:28:09 -0500347/**
348 * kvm_arch_vcpu_runnable - determine if the vcpu can be scheduled
349 * @v: The VCPU pointer
350 *
351 * If the guest CPU is not waiting for interrupts or an interrupt line is
352 * asserted, the CPU is by definition runnable.
353 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500354int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
355{
Eric Auger4f5f1dc2015-09-25 23:41:15 +0200356 return ((!!v->arch.irq_lines || kvm_vgic_vcpu_pending_irq(v))
Eric Auger3b928302015-09-25 23:41:17 +0200357 && !v->arch.power_off && !v->arch.pause);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500358}
359
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500360/* Just ensure a guest exit from a particular CPU */
361static void exit_vm_noop(void *info)
362{
363}
364
365void force_vm_exit(const cpumask_t *mask)
366{
367 smp_call_function_many(mask, exit_vm_noop, NULL, true);
368}
369
370/**
371 * need_new_vmid_gen - check that the VMID is still valid
372 * @kvm: The VM's VMID to checkt
373 *
374 * return true if there is a new generation of VMIDs being used
375 *
376 * The hardware supports only 256 values with the value zero reserved for the
377 * host, so we check if an assigned value belongs to a previous generation,
378 * which which requires us to assign a new value. If we're the first to use a
379 * VMID for the new generation, we must flush necessary caches and TLBs on all
380 * CPUs.
381 */
382static bool need_new_vmid_gen(struct kvm *kvm)
383{
384 return unlikely(kvm->arch.vmid_gen != atomic64_read(&kvm_vmid_gen));
385}
386
387/**
388 * update_vttbr - Update the VTTBR with a valid VMID before the guest runs
389 * @kvm The guest that we are about to run
390 *
391 * Called from kvm_arch_vcpu_ioctl_run before entering the guest to ensure the
392 * VM has a valid VMID, otherwise assigns a new one and flushes corresponding
393 * caches and TLBs.
394 */
395static void update_vttbr(struct kvm *kvm)
396{
397 phys_addr_t pgd_phys;
398 u64 vmid;
399
400 if (!need_new_vmid_gen(kvm))
401 return;
402
403 spin_lock(&kvm_vmid_lock);
404
405 /*
406 * We need to re-check the vmid_gen here to ensure that if another vcpu
407 * already allocated a valid vmid for this vm, then this vcpu should
408 * use the same vmid.
409 */
410 if (!need_new_vmid_gen(kvm)) {
411 spin_unlock(&kvm_vmid_lock);
412 return;
413 }
414
415 /* First user of a new VMID generation? */
416 if (unlikely(kvm_next_vmid == 0)) {
417 atomic64_inc(&kvm_vmid_gen);
418 kvm_next_vmid = 1;
419
420 /*
421 * On SMP we know no other CPUs can use this CPU's or each
422 * other's VMID after force_vm_exit returns since the
423 * kvm_vmid_lock blocks them from reentry to the guest.
424 */
425 force_vm_exit(cpu_all_mask);
426 /*
427 * Now broadcast TLB + ICACHE invalidation over the inner
428 * shareable domain to make sure all data structures are
429 * clean.
430 */
431 kvm_call_hyp(__kvm_flush_vm_context);
432 }
433
434 kvm->arch.vmid_gen = atomic64_read(&kvm_vmid_gen);
435 kvm->arch.vmid = kvm_next_vmid;
436 kvm_next_vmid++;
437
438 /* update vttbr to be used with the new vmid */
Christoffer Dall38f791a2014-10-10 12:14:28 +0200439 pgd_phys = virt_to_phys(kvm_get_hwpgd(kvm));
Joel Schoppdbff1242014-07-09 11:17:04 -0500440 BUG_ON(pgd_phys & ~VTTBR_BADDR_MASK);
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500441 vmid = ((u64)(kvm->arch.vmid) << VTTBR_VMID_SHIFT) & VTTBR_VMID_MASK;
Joel Schoppdbff1242014-07-09 11:17:04 -0500442 kvm->arch.vttbr = pgd_phys | vmid;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500443
444 spin_unlock(&kvm_vmid_lock);
445}
446
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500447static int kvm_vcpu_first_run_init(struct kvm_vcpu *vcpu)
448{
Christoffer Dall05971122014-12-12 21:19:23 +0100449 struct kvm *kvm = vcpu->kvm;
Christoffer Dalle1ba0202013-09-23 14:55:55 -0700450 int ret;
451
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500452 if (likely(vcpu->arch.has_run_once))
453 return 0;
454
455 vcpu->arch.has_run_once = true;
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500456
457 /*
Peter Maydell6d3cfbe2014-12-04 15:02:24 +0000458 * Map the VGIC hardware resources before running a vcpu the first
459 * time on this VM.
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500460 */
Pavel Fedinc2f58512015-08-05 11:53:57 +0100461 if (unlikely(irqchip_in_kernel(kvm) && !vgic_ready(kvm))) {
Christoffer Dall05971122014-12-12 21:19:23 +0100462 ret = kvm_vgic_map_resources(kvm);
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500463 if (ret)
464 return ret;
465 }
466
Christoffer Dall05971122014-12-12 21:19:23 +0100467 /*
468 * Enable the arch timers only if we have an in-kernel VGIC
469 * and it has been properly initialized, since we cannot handle
470 * interrupts from the virtual timer with a userspace gic.
471 */
472 if (irqchip_in_kernel(kvm) && vgic_initialized(kvm))
473 kvm_timer_enable(kvm);
474
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500475 return 0;
476}
477
Eric Augerc1426e42015-03-04 11:14:34 +0100478bool kvm_arch_intc_initialized(struct kvm *kvm)
479{
480 return vgic_initialized(kvm);
481}
482
Eric Auger3b928302015-09-25 23:41:17 +0200483static void kvm_arm_halt_guest(struct kvm *kvm) __maybe_unused;
484static void kvm_arm_resume_guest(struct kvm *kvm) __maybe_unused;
485
486static void kvm_arm_halt_guest(struct kvm *kvm)
487{
488 int i;
489 struct kvm_vcpu *vcpu;
490
491 kvm_for_each_vcpu(i, vcpu, kvm)
492 vcpu->arch.pause = true;
493 force_vm_exit(cpu_all_mask);
494}
495
496static void kvm_arm_resume_guest(struct kvm *kvm)
497{
498 int i;
499 struct kvm_vcpu *vcpu;
500
501 kvm_for_each_vcpu(i, vcpu, kvm) {
502 wait_queue_head_t *wq = kvm_arch_vcpu_wq(vcpu);
503
504 vcpu->arch.pause = false;
505 wake_up_interruptible(wq);
506 }
507}
508
Eric Auger37815282015-09-25 23:41:14 +0200509static void vcpu_sleep(struct kvm_vcpu *vcpu)
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500510{
511 wait_queue_head_t *wq = kvm_arch_vcpu_wq(vcpu);
512
Eric Auger3b928302015-09-25 23:41:17 +0200513 wait_event_interruptible(*wq, ((!vcpu->arch.power_off) &&
514 (!vcpu->arch.pause)));
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500515}
516
Andre Przywarae8180dc2013-05-09 00:28:06 +0200517static int kvm_vcpu_initialized(struct kvm_vcpu *vcpu)
518{
519 return vcpu->arch.target >= 0;
520}
521
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500522/**
523 * kvm_arch_vcpu_ioctl_run - the main VCPU run function to execute guest code
524 * @vcpu: The VCPU pointer
525 * @run: The kvm_run structure pointer used for userspace state exchange
526 *
527 * This function is called through the VCPU_RUN ioctl called from user space. It
528 * will execute VM code in a loop until the time slice for the process is used
529 * or some emulation is needed from user space in which case the function will
530 * return with return value 0 and with the kvm_run structure filled in with the
531 * required data for the requested emulation.
532 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500533int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
534{
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500535 int ret;
536 sigset_t sigsaved;
537
Andre Przywarae8180dc2013-05-09 00:28:06 +0200538 if (unlikely(!kvm_vcpu_initialized(vcpu)))
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500539 return -ENOEXEC;
540
541 ret = kvm_vcpu_first_run_init(vcpu);
542 if (ret)
543 return ret;
544
Christoffer Dall45e96ea2013-01-20 18:43:58 -0500545 if (run->exit_reason == KVM_EXIT_MMIO) {
546 ret = kvm_handle_mmio_return(vcpu, vcpu->run);
547 if (ret)
548 return ret;
549 }
550
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500551 if (vcpu->sigset_active)
552 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
553
554 ret = 1;
555 run->exit_reason = KVM_EXIT_UNKNOWN;
556 while (ret > 0) {
557 /*
558 * Check conditions before entering the guest
559 */
560 cond_resched();
561
562 update_vttbr(vcpu->kvm);
563
Eric Auger3b928302015-09-25 23:41:17 +0200564 if (vcpu->arch.power_off || vcpu->arch.pause)
Eric Auger37815282015-09-25 23:41:14 +0200565 vcpu_sleep(vcpu);
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500566
Marc Zyngierabdf5842015-06-08 15:00:28 +0100567 /*
Marc Zyngierabdf5842015-06-08 15:00:28 +0100568 * Preparing the interrupts to be injected also
569 * involves poking the GIC, which must be done in a
570 * non-preemptible context.
571 */
572 preempt_disable();
Christoffer Dall7e16aa82015-11-24 10:31:07 +0100573 kvm_timer_flush_hwstate(vcpu);
Marc Zyngier9a99d052015-06-05 09:33:28 +0100574 kvm_vgic_flush_hwstate(vcpu);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500575
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500576 local_irq_disable();
577
578 /*
579 * Re-check atomic conditions
580 */
581 if (signal_pending(current)) {
582 ret = -EINTR;
583 run->exit_reason = KVM_EXIT_INTR;
584 }
585
Eric Auger101d3da2015-09-25 23:41:16 +0200586 if (ret <= 0 || need_new_vmid_gen(vcpu->kvm) ||
Eric Auger3b928302015-09-25 23:41:17 +0200587 vcpu->arch.power_off || vcpu->arch.pause) {
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500588 local_irq_enable();
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200589 kvm_timer_sync_hwstate(vcpu);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500590 kvm_vgic_sync_hwstate(vcpu);
Marc Zyngierabdf5842015-06-08 15:00:28 +0100591 preempt_enable();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500592 continue;
593 }
594
Alex Bennée56c7f5e2015-07-07 17:29:56 +0100595 kvm_arm_setup_debug(vcpu);
596
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500597 /**************************************************************
598 * Enter the guest
599 */
600 trace_kvm_entry(*vcpu_pc(vcpu));
Christian Borntraegerccf73aaf2015-04-30 13:43:31 +0200601 __kvm_guest_enter();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500602 vcpu->mode = IN_GUEST_MODE;
603
604 ret = kvm_call_hyp(__kvm_vcpu_run, vcpu);
605
606 vcpu->mode = OUTSIDE_GUEST_MODE;
Amit Tomarb19e6892015-11-26 10:09:43 +0000607 vcpu->stat.exits++;
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100608 /*
609 * Back from guest
610 *************************************************************/
611
Alex Bennée56c7f5e2015-07-07 17:29:56 +0100612 kvm_arm_clear_debug(vcpu);
613
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500614 /*
615 * We may have taken a host interrupt in HYP mode (ie
616 * while executing the guest). This interrupt is still
617 * pending, as we haven't serviced it yet!
618 *
619 * We're now back in SVC mode, with interrupts
620 * disabled. Enabling the interrupts now will have
621 * the effect of taking the interrupt again, in SVC
622 * mode this time.
623 */
624 local_irq_enable();
625
626 /*
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100627 * We do local_irq_enable() before calling kvm_guest_exit() so
628 * that if a timer interrupt hits while running the guest we
629 * account that tick as being spent in the guest. We enable
630 * preemption after calling kvm_guest_exit() so that if we get
631 * preempted we make sure ticks after that is not counted as
632 * guest time.
633 */
634 kvm_guest_exit();
Christoffer Dallb5905dc2015-08-30 15:55:22 +0200635 trace_kvm_exit(ret, kvm_vcpu_trap_get_class(vcpu), *vcpu_pc(vcpu));
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100636
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200637 /*
638 * We must sync the timer state before the vgic state so that
639 * the vgic can properly sample the updated state of the
640 * interrupt line.
641 */
642 kvm_timer_sync_hwstate(vcpu);
643
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500644 kvm_vgic_sync_hwstate(vcpu);
Marc Zyngierabdf5842015-06-08 15:00:28 +0100645
646 preempt_enable();
647
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500648 ret = handle_exit(vcpu, run, ret);
649 }
650
651 if (vcpu->sigset_active)
652 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
653 return ret;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500654}
655
Christoffer Dall86ce85352013-01-20 18:28:08 -0500656static int vcpu_interrupt_line(struct kvm_vcpu *vcpu, int number, bool level)
657{
658 int bit_index;
659 bool set;
660 unsigned long *ptr;
661
662 if (number == KVM_ARM_IRQ_CPU_IRQ)
663 bit_index = __ffs(HCR_VI);
664 else /* KVM_ARM_IRQ_CPU_FIQ */
665 bit_index = __ffs(HCR_VF);
666
667 ptr = (unsigned long *)&vcpu->arch.irq_lines;
668 if (level)
669 set = test_and_set_bit(bit_index, ptr);
670 else
671 set = test_and_clear_bit(bit_index, ptr);
672
673 /*
674 * If we didn't change anything, no need to wake up or kick other CPUs
675 */
676 if (set == level)
677 return 0;
678
679 /*
680 * The vcpu irq_lines field was updated, wake up sleeping VCPUs and
681 * trigger a world-switch round on the running physical CPU to set the
682 * virtual IRQ/FIQ fields in the HCR appropriately.
683 */
684 kvm_vcpu_kick(vcpu);
685
686 return 0;
687}
688
Alexander Graf79558f12013-04-16 19:21:41 +0200689int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level,
690 bool line_status)
Christoffer Dall86ce85352013-01-20 18:28:08 -0500691{
692 u32 irq = irq_level->irq;
693 unsigned int irq_type, vcpu_idx, irq_num;
694 int nrcpus = atomic_read(&kvm->online_vcpus);
695 struct kvm_vcpu *vcpu = NULL;
696 bool level = irq_level->level;
697
698 irq_type = (irq >> KVM_ARM_IRQ_TYPE_SHIFT) & KVM_ARM_IRQ_TYPE_MASK;
699 vcpu_idx = (irq >> KVM_ARM_IRQ_VCPU_SHIFT) & KVM_ARM_IRQ_VCPU_MASK;
700 irq_num = (irq >> KVM_ARM_IRQ_NUM_SHIFT) & KVM_ARM_IRQ_NUM_MASK;
701
702 trace_kvm_irq_line(irq_type, vcpu_idx, irq_num, irq_level->level);
703
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500704 switch (irq_type) {
705 case KVM_ARM_IRQ_TYPE_CPU:
706 if (irqchip_in_kernel(kvm))
707 return -ENXIO;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500708
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500709 if (vcpu_idx >= nrcpus)
710 return -EINVAL;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500711
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500712 vcpu = kvm_get_vcpu(kvm, vcpu_idx);
713 if (!vcpu)
714 return -EINVAL;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500715
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500716 if (irq_num > KVM_ARM_IRQ_CPU_FIQ)
717 return -EINVAL;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500718
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500719 return vcpu_interrupt_line(vcpu, irq_num, level);
720 case KVM_ARM_IRQ_TYPE_PPI:
721 if (!irqchip_in_kernel(kvm))
722 return -ENXIO;
723
724 if (vcpu_idx >= nrcpus)
725 return -EINVAL;
726
727 vcpu = kvm_get_vcpu(kvm, vcpu_idx);
728 if (!vcpu)
729 return -EINVAL;
730
731 if (irq_num < VGIC_NR_SGIS || irq_num >= VGIC_NR_PRIVATE_IRQS)
732 return -EINVAL;
733
734 return kvm_vgic_inject_irq(kvm, vcpu->vcpu_id, irq_num, level);
735 case KVM_ARM_IRQ_TYPE_SPI:
736 if (!irqchip_in_kernel(kvm))
737 return -ENXIO;
738
Andre Przywarafd1d0dd2015-04-10 16:17:59 +0100739 if (irq_num < VGIC_NR_PRIVATE_IRQS)
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500740 return -EINVAL;
741
742 return kvm_vgic_inject_irq(kvm, 0, irq_num, level);
743 }
744
745 return -EINVAL;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500746}
747
Christoffer Dallf7fa034d2014-10-16 16:40:53 +0200748static int kvm_vcpu_set_target(struct kvm_vcpu *vcpu,
749 const struct kvm_vcpu_init *init)
750{
751 unsigned int i;
752 int phys_target = kvm_target_cpu();
753
754 if (init->target != phys_target)
755 return -EINVAL;
756
757 /*
758 * Secondary and subsequent calls to KVM_ARM_VCPU_INIT must
759 * use the same target.
760 */
761 if (vcpu->arch.target != -1 && vcpu->arch.target != init->target)
762 return -EINVAL;
763
764 /* -ENOENT for unknown features, -EINVAL for invalid combinations. */
765 for (i = 0; i < sizeof(init->features) * 8; i++) {
766 bool set = (init->features[i / 32] & (1 << (i % 32)));
767
768 if (set && i >= KVM_VCPU_MAX_FEATURES)
769 return -ENOENT;
770
771 /*
772 * Secondary and subsequent calls to KVM_ARM_VCPU_INIT must
773 * use the same feature set.
774 */
775 if (vcpu->arch.target != -1 && i < KVM_VCPU_MAX_FEATURES &&
776 test_bit(i, vcpu->arch.features) != set)
777 return -EINVAL;
778
779 if (set)
780 set_bit(i, vcpu->arch.features);
781 }
782
783 vcpu->arch.target = phys_target;
784
785 /* Now we know what it is, we can reset it. */
786 return kvm_reset_vcpu(vcpu);
787}
788
789
Christoffer Dall478a8232013-11-19 17:43:19 -0800790static int kvm_arch_vcpu_ioctl_vcpu_init(struct kvm_vcpu *vcpu,
791 struct kvm_vcpu_init *init)
792{
793 int ret;
794
795 ret = kvm_vcpu_set_target(vcpu, init);
796 if (ret)
797 return ret;
798
Christoffer Dall957db102014-11-27 10:35:03 +0100799 /*
800 * Ensure a rebooted VM will fault in RAM pages and detect if the
801 * guest MMU is turned off and flush the caches as needed.
802 */
803 if (vcpu->arch.has_run_once)
804 stage2_unmap_vm(vcpu->kvm);
805
Christoffer Dallb856a592014-10-16 17:21:16 +0200806 vcpu_reset_hcr(vcpu);
807
Christoffer Dall478a8232013-11-19 17:43:19 -0800808 /*
Eric Auger37815282015-09-25 23:41:14 +0200809 * Handle the "start in power-off" case.
Christoffer Dall478a8232013-11-19 17:43:19 -0800810 */
Christoffer Dall03f1d4c2014-12-02 15:27:51 +0100811 if (test_bit(KVM_ARM_VCPU_POWER_OFF, vcpu->arch.features))
Eric Auger37815282015-09-25 23:41:14 +0200812 vcpu->arch.power_off = true;
Christoffer Dall3ad8b3d2014-10-16 16:14:43 +0200813 else
Eric Auger37815282015-09-25 23:41:14 +0200814 vcpu->arch.power_off = false;
Christoffer Dall478a8232013-11-19 17:43:19 -0800815
816 return 0;
817}
818
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500819long kvm_arch_vcpu_ioctl(struct file *filp,
820 unsigned int ioctl, unsigned long arg)
821{
822 struct kvm_vcpu *vcpu = filp->private_data;
823 void __user *argp = (void __user *)arg;
824
825 switch (ioctl) {
826 case KVM_ARM_VCPU_INIT: {
827 struct kvm_vcpu_init init;
828
829 if (copy_from_user(&init, argp, sizeof(init)))
830 return -EFAULT;
831
Christoffer Dall478a8232013-11-19 17:43:19 -0800832 return kvm_arch_vcpu_ioctl_vcpu_init(vcpu, &init);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500833 }
834 case KVM_SET_ONE_REG:
835 case KVM_GET_ONE_REG: {
836 struct kvm_one_reg reg;
Andre Przywarae8180dc2013-05-09 00:28:06 +0200837
838 if (unlikely(!kvm_vcpu_initialized(vcpu)))
839 return -ENOEXEC;
840
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500841 if (copy_from_user(&reg, argp, sizeof(reg)))
842 return -EFAULT;
843 if (ioctl == KVM_SET_ONE_REG)
844 return kvm_arm_set_reg(vcpu, &reg);
845 else
846 return kvm_arm_get_reg(vcpu, &reg);
847 }
848 case KVM_GET_REG_LIST: {
849 struct kvm_reg_list __user *user_list = argp;
850 struct kvm_reg_list reg_list;
851 unsigned n;
852
Andre Przywarae8180dc2013-05-09 00:28:06 +0200853 if (unlikely(!kvm_vcpu_initialized(vcpu)))
854 return -ENOEXEC;
855
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500856 if (copy_from_user(&reg_list, user_list, sizeof(reg_list)))
857 return -EFAULT;
858 n = reg_list.n;
859 reg_list.n = kvm_arm_num_regs(vcpu);
860 if (copy_to_user(user_list, &reg_list, sizeof(reg_list)))
861 return -EFAULT;
862 if (n < reg_list.n)
863 return -E2BIG;
864 return kvm_arm_copy_reg_indices(vcpu, user_list->reg);
865 }
866 default:
867 return -EINVAL;
868 }
869}
870
Mario Smarduch53c810c2015-01-15 15:58:57 -0800871/**
872 * kvm_vm_ioctl_get_dirty_log - get and clear the log of dirty pages in a slot
873 * @kvm: kvm instance
874 * @log: slot id and address to which we copy the log
875 *
876 * Steps 1-4 below provide general overview of dirty page logging. See
877 * kvm_get_dirty_log_protect() function description for additional details.
878 *
879 * We call kvm_get_dirty_log_protect() to handle steps 1-3, upon return we
880 * always flush the TLB (step 4) even if previous step failed and the dirty
881 * bitmap may be corrupt. Regardless of previous outcome the KVM logging API
882 * does not preclude user space subsequent dirty log read. Flushing TLB ensures
883 * writes will be marked dirty for next log read.
884 *
885 * 1. Take a snapshot of the bit and clear it if needed.
886 * 2. Write protect the corresponding page.
887 * 3. Copy the snapshot to the userspace.
888 * 4. Flush TLB's if needed.
889 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500890int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
891{
Mario Smarduch53c810c2015-01-15 15:58:57 -0800892 bool is_dirty = false;
893 int r;
894
895 mutex_lock(&kvm->slots_lock);
896
897 r = kvm_get_dirty_log_protect(kvm, log, &is_dirty);
898
899 if (is_dirty)
900 kvm_flush_remote_tlbs(kvm);
901
902 mutex_unlock(&kvm->slots_lock);
903 return r;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500904}
905
Christoffer Dall3401d5462013-01-23 13:18:04 -0500906static int kvm_vm_ioctl_set_device_addr(struct kvm *kvm,
907 struct kvm_arm_device_addr *dev_addr)
908{
Christoffer Dall330690c2013-01-21 19:36:13 -0500909 unsigned long dev_id, type;
910
911 dev_id = (dev_addr->id & KVM_ARM_DEVICE_ID_MASK) >>
912 KVM_ARM_DEVICE_ID_SHIFT;
913 type = (dev_addr->id & KVM_ARM_DEVICE_TYPE_MASK) >>
914 KVM_ARM_DEVICE_TYPE_SHIFT;
915
916 switch (dev_id) {
917 case KVM_ARM_DEVICE_VGIC_V2:
Christoffer Dallce01e4e2013-09-23 14:55:56 -0700918 return kvm_vgic_addr(kvm, type, &dev_addr->addr, true);
Christoffer Dall330690c2013-01-21 19:36:13 -0500919 default:
920 return -ENODEV;
921 }
Christoffer Dall3401d5462013-01-23 13:18:04 -0500922}
923
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500924long kvm_arch_vm_ioctl(struct file *filp,
925 unsigned int ioctl, unsigned long arg)
926{
Christoffer Dall3401d5462013-01-23 13:18:04 -0500927 struct kvm *kvm = filp->private_data;
928 void __user *argp = (void __user *)arg;
929
930 switch (ioctl) {
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500931 case KVM_CREATE_IRQCHIP: {
Paolo Bonzini69ff5c62015-03-05 12:26:06 +0100932 return kvm_vgic_create(kvm, KVM_DEV_TYPE_ARM_VGIC_V2);
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500933 }
Christoffer Dall3401d5462013-01-23 13:18:04 -0500934 case KVM_ARM_SET_DEVICE_ADDR: {
935 struct kvm_arm_device_addr dev_addr;
936
937 if (copy_from_user(&dev_addr, argp, sizeof(dev_addr)))
938 return -EFAULT;
939 return kvm_vm_ioctl_set_device_addr(kvm, &dev_addr);
940 }
Anup Patel42c4e0c2013-09-30 14:20:07 +0530941 case KVM_ARM_PREFERRED_TARGET: {
942 int err;
943 struct kvm_vcpu_init init;
944
945 err = kvm_vcpu_preferred_target(&init);
946 if (err)
947 return err;
948
949 if (copy_to_user(argp, &init, sizeof(init)))
950 return -EFAULT;
951
952 return 0;
953 }
Christoffer Dall3401d5462013-01-23 13:18:04 -0500954 default:
955 return -EINVAL;
956 }
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500957}
958
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100959static void cpu_init_hyp_mode(void *dummy)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500960{
Marc Zyngierdac288f2013-05-14 12:11:37 +0100961 phys_addr_t boot_pgd_ptr;
962 phys_addr_t pgd_ptr;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500963 unsigned long hyp_stack_ptr;
964 unsigned long stack_page;
965 unsigned long vector_ptr;
966
967 /* Switch from the HYP stub to our own HYP init vector */
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100968 __hyp_set_vectors(kvm_get_idmap_vector());
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500969
Marc Zyngierdac288f2013-05-14 12:11:37 +0100970 boot_pgd_ptr = kvm_mmu_get_boot_httbr();
971 pgd_ptr = kvm_mmu_get_httbr();
Christoph Lameter1436c1a2013-10-21 13:17:08 +0100972 stack_page = __this_cpu_read(kvm_arm_hyp_stack_page);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500973 hyp_stack_ptr = stack_page + PAGE_SIZE;
974 vector_ptr = (unsigned long)__kvm_hyp_vector;
975
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100976 __cpu_init_hyp_mode(boot_pgd_ptr, pgd_ptr, hyp_stack_ptr, vector_ptr);
Alex Bennée56c7f5e2015-07-07 17:29:56 +0100977
978 kvm_arm_init_debug();
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500979}
980
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100981static int hyp_init_cpu_notify(struct notifier_block *self,
982 unsigned long action, void *cpu)
983{
984 switch (action) {
985 case CPU_STARTING:
986 case CPU_STARTING_FROZEN:
Vladimir Murzin37a34ac2014-09-22 15:52:48 +0100987 if (__hyp_get_vectors() == hyp_default_vectors)
988 cpu_init_hyp_mode(NULL);
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100989 break;
990 }
991
992 return NOTIFY_OK;
993}
994
995static struct notifier_block hyp_init_cpu_nb = {
996 .notifier_call = hyp_init_cpu_notify,
997};
998
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +0100999#ifdef CONFIG_CPU_PM
1000static int hyp_init_cpu_pm_notifier(struct notifier_block *self,
1001 unsigned long cmd,
1002 void *v)
1003{
Marc Zyngierb20c9f22014-02-26 18:47:36 +00001004 if (cmd == CPU_PM_EXIT &&
1005 __hyp_get_vectors() == hyp_default_vectors) {
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001006 cpu_init_hyp_mode(NULL);
1007 return NOTIFY_OK;
1008 }
1009
1010 return NOTIFY_DONE;
1011}
1012
1013static struct notifier_block hyp_init_cpu_pm_nb = {
1014 .notifier_call = hyp_init_cpu_pm_notifier,
1015};
1016
1017static void __init hyp_cpu_pm_init(void)
1018{
1019 cpu_pm_register_notifier(&hyp_init_cpu_pm_nb);
1020}
1021#else
1022static inline void hyp_cpu_pm_init(void)
1023{
1024}
1025#endif
1026
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001027/**
1028 * Inits Hyp-mode on all online CPUs
1029 */
1030static int init_hyp_mode(void)
1031{
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001032 int cpu;
1033 int err = 0;
1034
1035 /*
1036 * Allocate Hyp PGD and setup Hyp identity mapping
1037 */
1038 err = kvm_mmu_init();
1039 if (err)
1040 goto out_err;
1041
1042 /*
1043 * It is probably enough to obtain the default on one
1044 * CPU. It's unlikely to be different on the others.
1045 */
1046 hyp_default_vectors = __hyp_get_vectors();
1047
1048 /*
1049 * Allocate stack pages for Hypervisor-mode
1050 */
1051 for_each_possible_cpu(cpu) {
1052 unsigned long stack_page;
1053
1054 stack_page = __get_free_page(GFP_KERNEL);
1055 if (!stack_page) {
1056 err = -ENOMEM;
1057 goto out_free_stack_pages;
1058 }
1059
1060 per_cpu(kvm_arm_hyp_stack_page, cpu) = stack_page;
1061 }
1062
1063 /*
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001064 * Map the Hyp-code called directly from the host
1065 */
1066 err = create_hyp_mappings(__kvm_hyp_code_start, __kvm_hyp_code_end);
1067 if (err) {
1068 kvm_err("Cannot map world-switch code\n");
1069 goto out_free_mappings;
1070 }
1071
Marc Zyngier910917b2015-10-27 12:18:48 +00001072 err = create_hyp_mappings(__start_rodata, __end_rodata);
1073 if (err) {
1074 kvm_err("Cannot map rodata section\n");
1075 goto out_free_mappings;
1076 }
1077
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001078 /*
1079 * Map the Hyp stack pages
1080 */
1081 for_each_possible_cpu(cpu) {
1082 char *stack_page = (char *)per_cpu(kvm_arm_hyp_stack_page, cpu);
1083 err = create_hyp_mappings(stack_page, stack_page + PAGE_SIZE);
1084
1085 if (err) {
1086 kvm_err("Cannot map hyp stack\n");
1087 goto out_free_mappings;
1088 }
1089 }
1090
1091 /*
Marc Zyngier3de50da2013-04-08 16:47:19 +01001092 * Map the host CPU structures
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001093 */
Marc Zyngier3de50da2013-04-08 16:47:19 +01001094 kvm_host_cpu_state = alloc_percpu(kvm_cpu_context_t);
1095 if (!kvm_host_cpu_state) {
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001096 err = -ENOMEM;
Marc Zyngier3de50da2013-04-08 16:47:19 +01001097 kvm_err("Cannot allocate host CPU state\n");
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001098 goto out_free_mappings;
1099 }
1100
1101 for_each_possible_cpu(cpu) {
Marc Zyngier3de50da2013-04-08 16:47:19 +01001102 kvm_cpu_context_t *cpu_ctxt;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001103
Marc Zyngier3de50da2013-04-08 16:47:19 +01001104 cpu_ctxt = per_cpu_ptr(kvm_host_cpu_state, cpu);
1105 err = create_hyp_mappings(cpu_ctxt, cpu_ctxt + 1);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001106
1107 if (err) {
Marc Zyngier3de50da2013-04-08 16:47:19 +01001108 kvm_err("Cannot map host CPU state: %d\n", err);
1109 goto out_free_context;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001110 }
1111 }
1112
Marc Zyngier1a89dd92013-01-21 19:36:12 -05001113 /*
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001114 * Execute the init code on each CPU.
1115 */
1116 on_each_cpu(cpu_init_hyp_mode, NULL, 1);
1117
1118 /*
Marc Zyngier1a89dd92013-01-21 19:36:12 -05001119 * Init HYP view of VGIC
1120 */
1121 err = kvm_vgic_hyp_init();
1122 if (err)
Marc Zyngier3de50da2013-04-08 16:47:19 +01001123 goto out_free_context;
Marc Zyngier1a89dd92013-01-21 19:36:12 -05001124
Marc Zyngier967f8422013-01-23 13:21:59 -05001125 /*
1126 * Init HYP architected timer support
1127 */
1128 err = kvm_timer_hyp_init();
1129 if (err)
Pavel Fedin399ea0f2015-10-06 11:14:35 +03001130 goto out_free_context;
Marc Zyngier967f8422013-01-23 13:21:59 -05001131
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001132#ifndef CONFIG_HOTPLUG_CPU
1133 free_boot_hyp_pgd();
1134#endif
1135
Marc Zyngier210552c2013-03-05 03:18:00 +00001136 kvm_perf_init();
1137
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001138 kvm_info("Hyp mode initialized successfully\n");
Marc Zyngier210552c2013-03-05 03:18:00 +00001139
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001140 return 0;
Marc Zyngier3de50da2013-04-08 16:47:19 +01001141out_free_context:
1142 free_percpu(kvm_host_cpu_state);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001143out_free_mappings:
Marc Zyngier4f728272013-04-12 19:12:05 +01001144 free_hyp_pgds();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001145out_free_stack_pages:
1146 for_each_possible_cpu(cpu)
1147 free_page(per_cpu(kvm_arm_hyp_stack_page, cpu));
1148out_err:
1149 kvm_err("error initializing Hyp mode: %d\n", err);
1150 return err;
1151}
1152
Andre Przywarad4e071c2013-04-17 12:52:01 +02001153static void check_kvm_target_cpu(void *ret)
1154{
1155 *(int *)ret = kvm_target_cpu();
1156}
1157
Andre Przywara4429fc62014-06-02 15:37:13 +02001158struct kvm_vcpu *kvm_mpidr_to_vcpu(struct kvm *kvm, unsigned long mpidr)
1159{
1160 struct kvm_vcpu *vcpu;
1161 int i;
1162
1163 mpidr &= MPIDR_HWID_BITMASK;
1164 kvm_for_each_vcpu(i, vcpu, kvm) {
1165 if (mpidr == kvm_vcpu_get_mpidr_aff(vcpu))
1166 return vcpu;
1167 }
1168 return NULL;
1169}
1170
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001171/**
1172 * Initialize Hyp-mode and memory mappings on all CPUs.
1173 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001174int kvm_arch_init(void *opaque)
1175{
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001176 int err;
Andre Przywarad4e071c2013-04-17 12:52:01 +02001177 int ret, cpu;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001178
1179 if (!is_hyp_mode_available()) {
1180 kvm_err("HYP mode not available\n");
1181 return -ENODEV;
1182 }
1183
Andre Przywarad4e071c2013-04-17 12:52:01 +02001184 for_each_online_cpu(cpu) {
1185 smp_call_function_single(cpu, check_kvm_target_cpu, &ret, 1);
1186 if (ret < 0) {
1187 kvm_err("Error, CPU %d not supported!\n", cpu);
1188 return -ENODEV;
1189 }
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001190 }
1191
Srivatsa S. Bhat81468752014-03-18 15:53:05 +05301192 cpu_notifier_register_begin();
1193
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001194 err = init_hyp_mode();
1195 if (err)
1196 goto out_err;
1197
Srivatsa S. Bhat81468752014-03-18 15:53:05 +05301198 err = __register_cpu_notifier(&hyp_init_cpu_nb);
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001199 if (err) {
1200 kvm_err("Cannot register HYP init CPU notifier (%d)\n", err);
1201 goto out_err;
1202 }
1203
Srivatsa S. Bhat81468752014-03-18 15:53:05 +05301204 cpu_notifier_register_done();
1205
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001206 hyp_cpu_pm_init();
1207
Christoffer Dall5b3e5e52013-01-20 18:28:09 -05001208 kvm_coproc_table_init();
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001209 return 0;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001210out_err:
Srivatsa S. Bhat81468752014-03-18 15:53:05 +05301211 cpu_notifier_register_done();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001212 return err;
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001213}
1214
1215/* NOP: Compiling as a module not supported */
1216void kvm_arch_exit(void)
1217{
Marc Zyngier210552c2013-03-05 03:18:00 +00001218 kvm_perf_teardown();
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001219}
1220
1221static int arm_init(void)
1222{
1223 int rc = kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE);
1224 return rc;
1225}
1226
1227module_init(arm_init);