blob: abd86e865be3be952b4cc00e967606bdf7b43d83 [file] [log] [blame]
Avi Kivity221d0592010-05-23 18:37:00 +03001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
6 *
7 * timer support
8 *
Nicolas Kaiser9611c182010-10-06 14:23:22 +02009 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity221d0592010-05-23 18:37:00 +030010 *
11 * This work is licensed under the terms of the GNU GPL, version 2. See
12 * the COPYING file in the top-level directory.
13 */
14
Marcelo Tosattid3c7b772009-02-23 10:57:41 -030015#include <linux/kvm_host.h>
16#include <linux/kvm.h>
17#include <linux/hrtimer.h>
18#include <asm/atomic.h>
19#include "kvm_timer.h"
20
21static int __kvm_timer_fn(struct kvm_vcpu *vcpu, struct kvm_timer *ktimer)
22{
23 int restart_timer = 0;
24 wait_queue_head_t *q = &vcpu->wq;
25
Jan Kiszkaf7104db2009-06-09 15:37:01 +020026 /*
27 * There is a race window between reading and incrementing, but we do
Lucas De Marchi0d2eb442011-03-17 16:24:16 -030028 * not care about potentially losing timer events in the !reinject
Marcelo Tosatti041b1352010-03-23 14:15:53 -030029 * case anyway. Note: KVM_REQ_PENDING_TIMER is implicitly checked
30 * in vcpu_enter_guest.
Jan Kiszkaf7104db2009-06-09 15:37:01 +020031 */
32 if (ktimer->reinject || !atomic_read(&ktimer->pending)) {
Jan Kiszka681405b2009-06-09 15:37:03 +020033 atomic_inc(&ktimer->pending);
Jan Kiszkaf7104db2009-06-09 15:37:01 +020034 /* FIXME: this code should not know anything about vcpus */
Avi Kivitya8eeb042010-05-10 12:34:53 +030035 kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu);
Jan Kiszkaf7104db2009-06-09 15:37:01 +020036 }
Marcelo Tosattid3c7b772009-02-23 10:57:41 -030037
38 if (waitqueue_active(q))
39 wake_up_interruptible(q);
40
41 if (ktimer->t_ops->is_periodic(ktimer)) {
42 hrtimer_add_expires_ns(&ktimer->timer, ktimer->period);
43 restart_timer = 1;
44 }
45
46 return restart_timer;
47}
48
49enum hrtimer_restart kvm_timer_fn(struct hrtimer *data)
50{
51 int restart_timer;
52 struct kvm_vcpu *vcpu;
53 struct kvm_timer *ktimer = container_of(data, struct kvm_timer, timer);
54
Gleb Natapov1ed0ce02009-06-09 15:56:27 +030055 vcpu = ktimer->vcpu;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -030056 if (!vcpu)
57 return HRTIMER_NORESTART;
58
59 restart_timer = __kvm_timer_fn(vcpu, ktimer);
60 if (restart_timer)
61 return HRTIMER_RESTART;
62 else
63 return HRTIMER_NORESTART;
64}
65