blob: 4a0802af2e3e0acd8fdcd61669d54c5937fec012 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0-or-later
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/* KVM paravirtual clock driver. A clocksource implementation
3 Copyright (C) 2008 Glauber de Oliveira Costa, Red Hat Inc.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004*/
5
6#include <linux/clocksource.h>
7#include <linux/kvm_para.h>
8#include <asm/pvclock.h>
9#include <asm/msr.h>
10#include <asm/apic.h>
11#include <linux/percpu.h>
12#include <linux/hardirq.h>
13#include <linux/cpuhotplug.h>
14#include <linux/sched.h>
15#include <linux/sched/clock.h>
16#include <linux/mm.h>
17#include <linux/slab.h>
18#include <linux/set_memory.h>
19
20#include <asm/hypervisor.h>
21#include <asm/mem_encrypt.h>
22#include <asm/x86_init.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000023#include <asm/kvmclock.h>
24
25static int kvmclock __initdata = 1;
26static int kvmclock_vsyscall __initdata = 1;
27static int msr_kvm_system_time __ro_after_init = MSR_KVM_SYSTEM_TIME;
28static int msr_kvm_wall_clock __ro_after_init = MSR_KVM_WALL_CLOCK;
29static u64 kvm_sched_clock_offset __ro_after_init;
30
31static int __init parse_no_kvmclock(char *arg)
32{
33 kvmclock = 0;
34 return 0;
35}
36early_param("no-kvmclock", parse_no_kvmclock);
37
38static int __init parse_no_kvmclock_vsyscall(char *arg)
39{
40 kvmclock_vsyscall = 0;
41 return 0;
42}
43early_param("no-kvmclock-vsyscall", parse_no_kvmclock_vsyscall);
44
45/* Aligned to page sizes to match whats mapped via vsyscalls to userspace */
46#define HV_CLOCK_SIZE (sizeof(struct pvclock_vsyscall_time_info) * NR_CPUS)
47#define HVC_BOOT_ARRAY_SIZE \
48 (PAGE_SIZE / sizeof(struct pvclock_vsyscall_time_info))
49
50static struct pvclock_vsyscall_time_info
51 hv_clock_boot[HVC_BOOT_ARRAY_SIZE] __bss_decrypted __aligned(PAGE_SIZE);
52static struct pvclock_wall_clock wall_clock __bss_decrypted;
53static DEFINE_PER_CPU(struct pvclock_vsyscall_time_info *, hv_clock_per_cpu);
54static struct pvclock_vsyscall_time_info *hvclock_mem;
55
56static inline struct pvclock_vcpu_time_info *this_cpu_pvti(void)
57{
58 return &this_cpu_read(hv_clock_per_cpu)->pvti;
59}
60
61static inline struct pvclock_vsyscall_time_info *this_cpu_hvclock(void)
62{
63 return this_cpu_read(hv_clock_per_cpu);
64}
65
66/*
67 * The wallclock is the time of day when we booted. Since then, some time may
68 * have elapsed since the hypervisor wrote the data. So we try to account for
69 * that with system time
70 */
71static void kvm_get_wallclock(struct timespec64 *now)
72{
73 wrmsrl(msr_kvm_wall_clock, slow_virt_to_phys(&wall_clock));
74 preempt_disable();
75 pvclock_read_wallclock(&wall_clock, this_cpu_pvti(), now);
76 preempt_enable();
77}
78
79static int kvm_set_wallclock(const struct timespec64 *now)
80{
81 return -ENODEV;
82}
83
84static u64 kvm_clock_read(void)
85{
86 u64 ret;
87
88 preempt_disable_notrace();
89 ret = pvclock_clocksource_read(this_cpu_pvti());
90 preempt_enable_notrace();
91 return ret;
92}
93
94static u64 kvm_clock_get_cycles(struct clocksource *cs)
95{
96 return kvm_clock_read();
97}
98
99static u64 kvm_sched_clock_read(void)
100{
101 return kvm_clock_read() - kvm_sched_clock_offset;
102}
103
104static inline void kvm_sched_clock_init(bool stable)
105{
David Brazdil0f672f62019-12-10 10:32:29 +0000106 if (!stable)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000107 clear_sched_clock_stable();
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000108 kvm_sched_clock_offset = kvm_clock_read();
David Brazdil0f672f62019-12-10 10:32:29 +0000109 pv_ops.time.sched_clock = kvm_sched_clock_read;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000110
111 pr_info("kvm-clock: using sched offset of %llu cycles",
112 kvm_sched_clock_offset);
113
114 BUILD_BUG_ON(sizeof(kvm_sched_clock_offset) >
115 sizeof(((struct pvclock_vcpu_time_info *)NULL)->system_time));
116}
117
118/*
119 * If we don't do that, there is the possibility that the guest
120 * will calibrate under heavy load - thus, getting a lower lpj -
121 * and execute the delays themselves without load. This is wrong,
122 * because no delay loop can finish beforehand.
123 * Any heuristics is subject to fail, because ultimately, a large
124 * poll of guests can be running and trouble each other. So we preset
125 * lpj here
126 */
127static unsigned long kvm_get_tsc_khz(void)
128{
129 setup_force_cpu_cap(X86_FEATURE_TSC_KNOWN_FREQ);
130 return pvclock_tsc_khz(this_cpu_pvti());
131}
132
133static void __init kvm_get_preset_lpj(void)
134{
135 unsigned long khz;
136 u64 lpj;
137
138 khz = kvm_get_tsc_khz();
139
140 lpj = ((u64)khz * 1000);
141 do_div(lpj, HZ);
142 preset_lpj = lpj;
143}
144
145bool kvm_check_and_clear_guest_paused(void)
146{
147 struct pvclock_vsyscall_time_info *src = this_cpu_hvclock();
148 bool ret = false;
149
150 if (!src)
151 return ret;
152
153 if ((src->pvti.flags & PVCLOCK_GUEST_STOPPED) != 0) {
154 src->pvti.flags &= ~PVCLOCK_GUEST_STOPPED;
155 pvclock_touch_watchdogs();
156 ret = true;
157 }
158 return ret;
159}
160
161struct clocksource kvm_clock = {
162 .name = "kvm-clock",
163 .read = kvm_clock_get_cycles,
164 .rating = 400,
165 .mask = CLOCKSOURCE_MASK(64),
166 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
167};
168EXPORT_SYMBOL_GPL(kvm_clock);
169
170static void kvm_register_clock(char *txt)
171{
172 struct pvclock_vsyscall_time_info *src = this_cpu_hvclock();
173 u64 pa;
174
175 if (!src)
176 return;
177
178 pa = slow_virt_to_phys(&src->pvti) | 0x01ULL;
179 wrmsrl(msr_kvm_system_time, pa);
180 pr_info("kvm-clock: cpu %d, msr %llx, %s", smp_processor_id(), pa, txt);
181}
182
183static void kvm_save_sched_clock_state(void)
184{
185}
186
187static void kvm_restore_sched_clock_state(void)
188{
189 kvm_register_clock("primary cpu clock, resume");
190}
191
192#ifdef CONFIG_X86_LOCAL_APIC
193static void kvm_setup_secondary_clock(void)
194{
195 kvm_register_clock("secondary cpu clock");
196}
197#endif
198
Olivier Deprez0e641232021-09-23 10:07:05 +0200199void kvmclock_disable(void)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000200{
201 native_write_msr(msr_kvm_system_time, 0, 0);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000202}
203
204static void __init kvmclock_init_mem(void)
205{
206 unsigned long ncpus;
207 unsigned int order;
208 struct page *p;
209 int r;
210
211 if (HVC_BOOT_ARRAY_SIZE >= num_possible_cpus())
212 return;
213
214 ncpus = num_possible_cpus() - HVC_BOOT_ARRAY_SIZE;
215 order = get_order(ncpus * sizeof(*hvclock_mem));
216
217 p = alloc_pages(GFP_KERNEL, order);
218 if (!p) {
219 pr_warn("%s: failed to alloc %d pages", __func__, (1U << order));
220 return;
221 }
222
223 hvclock_mem = page_address(p);
224
225 /*
226 * hvclock is shared between the guest and the hypervisor, must
227 * be mapped decrypted.
228 */
229 if (sev_active()) {
230 r = set_memory_decrypted((unsigned long) hvclock_mem,
231 1UL << order);
232 if (r) {
233 __free_pages(p, order);
234 hvclock_mem = NULL;
235 pr_warn("kvmclock: set_memory_decrypted() failed. Disabling\n");
236 return;
237 }
238 }
239
240 memset(hvclock_mem, 0, PAGE_SIZE << order);
241}
242
243static int __init kvm_setup_vsyscall_timeinfo(void)
244{
245#ifdef CONFIG_X86_64
246 u8 flags;
247
248 if (!per_cpu(hv_clock_per_cpu, 0) || !kvmclock_vsyscall)
249 return 0;
250
251 flags = pvclock_read_flags(&hv_clock_boot[0].pvti);
252 if (!(flags & PVCLOCK_TSC_STABLE_BIT))
253 return 0;
254
255 kvm_clock.archdata.vclock_mode = VCLOCK_PVCLOCK;
256#endif
257
258 kvmclock_init_mem();
259
260 return 0;
261}
262early_initcall(kvm_setup_vsyscall_timeinfo);
263
264static int kvmclock_setup_percpu(unsigned int cpu)
265{
266 struct pvclock_vsyscall_time_info *p = per_cpu(hv_clock_per_cpu, cpu);
267
268 /*
269 * The per cpu area setup replicates CPU0 data to all cpu
270 * pointers. So carefully check. CPU0 has been set up in init
271 * already.
272 */
273 if (!cpu || (p && p != per_cpu(hv_clock_per_cpu, 0)))
274 return 0;
275
276 /* Use the static page for the first CPUs, allocate otherwise */
277 if (cpu < HVC_BOOT_ARRAY_SIZE)
278 p = &hv_clock_boot[cpu];
279 else if (hvclock_mem)
280 p = hvclock_mem + cpu - HVC_BOOT_ARRAY_SIZE;
281 else
282 return -ENOMEM;
283
284 per_cpu(hv_clock_per_cpu, cpu) = p;
285 return p ? 0 : -ENOMEM;
286}
287
288void __init kvmclock_init(void)
289{
290 u8 flags;
291
292 if (!kvm_para_available() || !kvmclock)
293 return;
294
295 if (kvm_para_has_feature(KVM_FEATURE_CLOCKSOURCE2)) {
296 msr_kvm_system_time = MSR_KVM_SYSTEM_TIME_NEW;
297 msr_kvm_wall_clock = MSR_KVM_WALL_CLOCK_NEW;
298 } else if (!kvm_para_has_feature(KVM_FEATURE_CLOCKSOURCE)) {
299 return;
300 }
301
302 if (cpuhp_setup_state(CPUHP_BP_PREPARE_DYN, "kvmclock:setup_percpu",
303 kvmclock_setup_percpu, NULL) < 0) {
304 return;
305 }
306
307 pr_info("kvm-clock: Using msrs %x and %x",
308 msr_kvm_system_time, msr_kvm_wall_clock);
309
310 this_cpu_write(hv_clock_per_cpu, &hv_clock_boot[0]);
311 kvm_register_clock("primary cpu clock");
312 pvclock_set_pvti_cpu0_va(hv_clock_boot);
313
314 if (kvm_para_has_feature(KVM_FEATURE_CLOCKSOURCE_STABLE_BIT))
315 pvclock_set_flags(PVCLOCK_TSC_STABLE_BIT);
316
317 flags = pvclock_read_flags(&hv_clock_boot[0].pvti);
318 kvm_sched_clock_init(flags & PVCLOCK_TSC_STABLE_BIT);
319
320 x86_platform.calibrate_tsc = kvm_get_tsc_khz;
321 x86_platform.calibrate_cpu = kvm_get_tsc_khz;
322 x86_platform.get_wallclock = kvm_get_wallclock;
323 x86_platform.set_wallclock = kvm_set_wallclock;
324#ifdef CONFIG_X86_LOCAL_APIC
325 x86_cpuinit.early_percpu_clock_init = kvm_setup_secondary_clock;
326#endif
327 x86_platform.save_sched_clock_state = kvm_save_sched_clock_state;
328 x86_platform.restore_sched_clock_state = kvm_restore_sched_clock_state;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000329 kvm_get_preset_lpj();
David Brazdil0f672f62019-12-10 10:32:29 +0000330
331 /*
332 * X86_FEATURE_NONSTOP_TSC is TSC runs at constant rate
333 * with P/T states and does not stop in deep C-states.
334 *
335 * Invariant TSC exposed by host means kvmclock is not necessary:
336 * can use TSC as clocksource.
337 *
338 */
339 if (boot_cpu_has(X86_FEATURE_CONSTANT_TSC) &&
340 boot_cpu_has(X86_FEATURE_NONSTOP_TSC) &&
341 !check_tsc_unstable())
342 kvm_clock.rating = 299;
343
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000344 clocksource_register_hz(&kvm_clock, NSEC_PER_SEC);
345 pv_info.name = "KVM";
346}