2 * QEMU KVM support, paravirtual clock device
4 * Copyright (C) 2011 Siemens AG
7 * Jan Kiszka <jan.kiszka@siemens.com>
9 * This work is licensed under the terms of the GNU GPL version 2.
10 * See the COPYING file in the top-level directory.
12 * Contributions after 2012-01-13 are licensed under the terms of the
13 * GNU GPL, version 2 or (at your option) any later version.
16 #include "qemu-common.h"
22 #include <linux/kvm.h>
23 #include <linux/kvm_para.h>
25 typedef struct KVMClockState
{
31 static void kvmclock_pre_save(void *opaque
)
33 KVMClockState
*s
= opaque
;
34 struct kvm_clock_data data
;
40 ret
= kvm_vm_ioctl(kvm_state
, KVM_GET_CLOCK
, &data
);
42 fprintf(stderr
, "KVM_GET_CLOCK failed: %s\n", strerror(ret
));
45 s
->clock
= data
.clock
;
47 * If the VM is stopped, declare the clock state valid to avoid re-reading
48 * it on next vmsave (which would return a different value). Will be reset
49 * when the VM is continued.
51 s
->clock_valid
= !runstate_is_running();
54 static int kvmclock_post_load(void *opaque
, int version_id
)
56 KVMClockState
*s
= opaque
;
57 struct kvm_clock_data data
;
59 data
.clock
= s
->clock
;
61 return kvm_vm_ioctl(kvm_state
, KVM_SET_CLOCK
, &data
);
64 static void kvmclock_vm_state_change(void *opaque
, int running
,
67 KVMClockState
*s
= opaque
;
70 s
->clock_valid
= false;
74 static int kvmclock_init(SysBusDevice
*dev
)
76 KVMClockState
*s
= FROM_SYSBUS(KVMClockState
, dev
);
78 qemu_add_vm_change_state_handler(kvmclock_vm_state_change
, s
);
82 static const VMStateDescription kvmclock_vmsd
= {
85 .minimum_version_id
= 1,
86 .minimum_version_id_old
= 1,
87 .pre_save
= kvmclock_pre_save
,
88 .post_load
= kvmclock_post_load
,
89 .fields
= (VMStateField
[]) {
90 VMSTATE_UINT64(clock
, KVMClockState
),
95 static SysBusDeviceInfo kvmclock_info
= {
96 .qdev
.name
= "kvmclock",
97 .qdev
.size
= sizeof(KVMClockState
),
98 .qdev
.vmsd
= &kvmclock_vmsd
,
100 .init
= kvmclock_init
,
103 /* Note: Must be called after VCPU initialization. */
104 void kvmclock_create(void)
107 first_cpu
->cpuid_kvm_features
& ((1ULL << KVM_FEATURE_CLOCKSOURCE
) |
108 (1ULL << KVM_FEATURE_CLOCKSOURCE2
))) {
109 sysbus_create_simple("kvmclock", -1, NULL
);
113 static void kvmclock_register_device(void)
116 sysbus_register_withprop(&kvmclock_info
);
120 device_init(kvmclock_register_device
);