kvmclock.c 7.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*  KVM paravirtual clock driver. A clocksource implementation
    Copyright (C) 2008 Glauber de Oliveira Costa, Red Hat Inc.

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/

#include <linux/clocksource.h>
#include <linux/kvm_para.h>
21
#include <asm/pvclock.h>
22 23 24
#include <asm/msr.h>
#include <asm/apic.h>
#include <linux/percpu.h>
25
#include <linux/hardirq.h>
26
#include <linux/memblock.h>
27 28

#include <asm/x86_init.h>
29
#include <asm/reboot.h>
30 31

static int kvmclock = 1;
32 33
static int msr_kvm_system_time = MSR_KVM_SYSTEM_TIME;
static int msr_kvm_wall_clock = MSR_KVM_WALL_CLOCK;
34 35 36 37 38 39 40 41 42

static int parse_no_kvmclock(char *arg)
{
	kvmclock = 0;
	return 0;
}
early_param("no-kvmclock", parse_no_kvmclock);

/* The hypervisor will put information about time periodically here */
43
static struct pvclock_vsyscall_time_info *hv_clock;
44
static struct pvclock_wall_clock wall_clock;
45 46 47 48 49 50

/*
 * The wallclock is the time of day when we booted. Since then, some time may
 * have elapsed since the hypervisor wrote the data. So we try to account for
 * that with system time
 */
51
static void kvm_get_wallclock(struct timespec *now)
52
{
53
	struct pvclock_vcpu_time_info *vcpu_time;
54
	int low, high;
55
	int cpu;
56

57 58
	low = (int)__pa_symbol(&wall_clock);
	high = ((u64)__pa_symbol(&wall_clock) >> 32);
59 60

	native_write_msr(msr_kvm_wall_clock, low, high);
61

62
	cpu = get_cpu();
63

64
	vcpu_time = &hv_clock[cpu].pvti;
65
	pvclock_read_wallclock(&wall_clock, vcpu_time, now);
66

67
	put_cpu();
68 69
}

70
static int kvm_set_wallclock(const struct timespec *now)
71
{
72
	return -1;
73 74 75 76
}

static cycle_t kvm_clock_read(void)
{
77 78
	struct pvclock_vcpu_time_info *src;
	cycle_t ret;
79
	int cpu;
80

81
	preempt_disable_notrace();
82
	cpu = smp_processor_id();
83
	src = &hv_clock[cpu].pvti;
84
	ret = pvclock_clocksource_read(src);
85
	preempt_enable_notrace();
86
	return ret;
87
}
88

89 90 91 92 93
static cycle_t kvm_clock_get_cycles(struct clocksource *cs)
{
	return kvm_clock_read();
}

94 95 96 97 98 99 100 101 102 103 104
/*
 * If we don't do that, there is the possibility that the guest
 * will calibrate under heavy load - thus, getting a lower lpj -
 * and execute the delays themselves without load. This is wrong,
 * because no delay loop can finish beforehand.
 * Any heuristics is subject to fail, because ultimately, a large
 * poll of guests can be running and trouble each other. So we preset
 * lpj here
 */
static unsigned long kvm_get_tsc_khz(void)
{
105
	struct pvclock_vcpu_time_info *src;
106 107 108
	int cpu;
	unsigned long tsc_khz;

109
	cpu = get_cpu();
110
	src = &hv_clock[cpu].pvti;
111
	tsc_khz = pvclock_tsc_khz(src);
112
	put_cpu();
113
	return tsc_khz;
114 115 116 117 118 119 120
}

static void kvm_get_preset_lpj(void)
{
	unsigned long khz;
	u64 lpj;

121
	khz = kvm_get_tsc_khz();
122 123 124 125 126 127

	lpj = ((u64)khz * 1000);
	do_div(lpj, HZ);
	preset_lpj = lpj;
}

128 129 130 131
bool kvm_check_and_clear_guest_paused(void)
{
	bool ret = false;
	struct pvclock_vcpu_time_info *src;
132 133 134 135
	int cpu = smp_processor_id();

	if (!hv_clock)
		return ret;
136

137
	src = &hv_clock[cpu].pvti;
138
	if ((src->flags & PVCLOCK_GUEST_STOPPED) != 0) {
139
		src->flags &= ~PVCLOCK_GUEST_STOPPED;
140
		pvclock_touch_watchdogs();
141 142 143 144 145 146
		ret = true;
	}

	return ret;
}

147 148
static struct clocksource kvm_clock = {
	.name = "kvm-clock",
149
	.read = kvm_clock_get_cycles,
150 151 152 153 154
	.rating = 400,
	.mask = CLOCKSOURCE_MASK(64),
	.flags = CLOCK_SOURCE_IS_CONTINUOUS,
};

155
int kvm_register_clock(char *txt)
156 157
{
	int cpu = smp_processor_id();
158
	int low, high, ret;
159 160 161 162
	struct pvclock_vcpu_time_info *src;

	if (!hv_clock)
		return 0;
163

164
	src = &hv_clock[cpu].pvti;
165 166
	low = (int)slow_virt_to_phys(src) | 1;
	high = ((u64)slow_virt_to_phys(src) >> 32);
167
	ret = native_write_msr_safe(msr_kvm_system_time, low, high);
168 169
	printk(KERN_INFO "kvm-clock: cpu %d, msr %x:%x, %s\n",
	       cpu, high, low, txt);
170

171
	return ret;
172 173
}

174 175 176 177 178 179 180 181 182
static void kvm_save_sched_clock_state(void)
{
}

static void kvm_restore_sched_clock_state(void)
{
	kvm_register_clock("primary cpu clock, resume");
}

183
#ifdef CONFIG_X86_LOCAL_APIC
184
static void kvm_setup_secondary_clock(void)
185 186 187 188 189
{
	/*
	 * Now that the first cpu already had this clocksource initialized,
	 * we shouldn't fail.
	 */
190
	WARN_ON(kvm_register_clock("secondary cpu clock"));
191
}
192
#endif
193

194 195 196 197 198 199 200 201 202 203 204
/*
 * After the clock is registered, the host will keep writing to the
 * registered memory location. If the guest happens to shutdown, this memory
 * won't be valid. In cases like kexec, in which you install a new kernel, this
 * means a random memory location will be kept being written. So before any
 * kind of shutdown from our side, we unregister the clock by writting anything
 * that does not have the 'enable' bit set in the msr
 */
#ifdef CONFIG_KEXEC
static void kvm_crash_shutdown(struct pt_regs *regs)
{
205
	native_write_msr(msr_kvm_system_time, 0, 0);
206
	kvm_disable_steal_time();
207 208 209 210 211 212
	native_machine_crash_shutdown(regs);
}
#endif

static void kvm_shutdown(void)
{
213
	native_write_msr(msr_kvm_system_time, 0, 0);
214
	kvm_disable_steal_time();
215 216 217
	native_machine_shutdown();
}

218 219
void __init kvmclock_init(void)
{
220
	unsigned long mem;
221 222 223
	int size;

	size = PAGE_ALIGN(sizeof(struct pvclock_vsyscall_time_info)*NR_CPUS);
224

225 226 227
	if (!kvm_para_available())
		return;

228 229 230 231 232 233 234 235 236
	if (kvmclock && kvm_para_has_feature(KVM_FEATURE_CLOCKSOURCE2)) {
		msr_kvm_system_time = MSR_KVM_SYSTEM_TIME_NEW;
		msr_kvm_wall_clock = MSR_KVM_WALL_CLOCK_NEW;
	} else if (!(kvmclock && kvm_para_has_feature(KVM_FEATURE_CLOCKSOURCE)))
		return;

	printk(KERN_INFO "kvm-clock: Using msrs %x and %x",
		msr_kvm_system_time, msr_kvm_wall_clock);

237
	mem = memblock_alloc(size, PAGE_SIZE);
238 239 240
	if (!mem)
		return;
	hv_clock = __va(mem);
241
	memset(hv_clock, 0, size);
242

243
	if (kvm_register_clock("primary cpu clock")) {
244
		hv_clock = NULL;
245
		memblock_free(mem, size);
246
		return;
247
	}
248 249 250 251
	pv_time_ops.sched_clock = kvm_clock_read;
	x86_platform.calibrate_tsc = kvm_get_tsc_khz;
	x86_platform.get_wallclock = kvm_get_wallclock;
	x86_platform.set_wallclock = kvm_set_wallclock;
252
#ifdef CONFIG_X86_LOCAL_APIC
253
	x86_cpuinit.early_percpu_clock_init =
254
		kvm_setup_secondary_clock;
255
#endif
256 257
	x86_platform.save_sched_clock_state = kvm_save_sched_clock_state;
	x86_platform.restore_sched_clock_state = kvm_restore_sched_clock_state;
258
	machine_ops.shutdown  = kvm_shutdown;
259
#ifdef CONFIG_KEXEC
260
	machine_ops.crash_shutdown  = kvm_crash_shutdown;
261
#endif
262
	kvm_get_preset_lpj();
263
	clocksource_register_hz(&kvm_clock, NSEC_PER_SEC);
264
	pv_info.name = "KVM";
265 266 267

	if (kvm_para_has_feature(KVM_FEATURE_CLOCKSOURCE_STABLE_BIT))
		pvclock_set_flags(PVCLOCK_TSC_STABLE_BIT);
268
}
269 270 271 272 273 274 275 276 277 278

int __init kvm_setup_vsyscall_timeinfo(void)
{
#ifdef CONFIG_X86_64
	int cpu;
	int ret;
	u8 flags;
	struct pvclock_vcpu_time_info *vcpu_time;
	unsigned int size;

279 280 281
	if (!hv_clock)
		return 0;

282
	size = PAGE_ALIGN(sizeof(struct pvclock_vsyscall_time_info)*NR_CPUS);
283

284
	cpu = get_cpu();
285 286 287 288 289

	vcpu_time = &hv_clock[cpu].pvti;
	flags = pvclock_read_flags(vcpu_time);

	if (!(flags & PVCLOCK_TSC_STABLE_BIT)) {
290
		put_cpu();
291 292 293 294
		return 1;
	}

	if ((ret = pvclock_init_vsyscall(hv_clock, size))) {
295
		put_cpu();
296 297 298
		return ret;
	}

299
	put_cpu();
300 301 302 303 304

	kvm_clock.archdata.vclock_mode = VCLOCK_PVCLOCK;
#endif
	return 0;
}