blob: 448cfe1b48cf02b46c76b76cf2aa0be93b3df0bc [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_PVCLOCK_H
2#define _ASM_X86_PVCLOCK_H
Gerd Hoffmann7af192c2008-06-03 16:17:29 +02003
4#include <linux/clocksource.h>
5#include <asm/pvclock-abi.h>
6
Andy Lutomirski8705d602015-12-29 20:12:18 -08007#ifdef CONFIG_KVM_GUEST
Andy Lutomirskidac16fb2015-12-10 19:20:20 -08008extern struct pvclock_vsyscall_time_info *pvclock_pvti_cpu0_va(void);
9#else
10static inline struct pvclock_vsyscall_time_info *pvclock_pvti_cpu0_va(void)
11{
12 return NULL;
13}
14#endif
15
Gerd Hoffmann7af192c2008-06-03 16:17:29 +020016/* some helper functions for xen and kvm pv clock sources */
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +010017u64 pvclock_clocksource_read(struct pvclock_vcpu_time_info *src);
Marcelo Tosatti26979022012-11-27 23:28:52 -020018u8 pvclock_read_flags(struct pvclock_vcpu_time_info *src);
Glauber Costa424c32f2010-05-11 12:17:39 -040019void pvclock_set_flags(u8 flags);
Glauber Costa3807f342008-07-28 11:47:52 -030020unsigned long pvclock_tsc_khz(struct pvclock_vcpu_time_info *src);
Gerd Hoffmann7af192c2008-06-03 16:17:29 +020021void pvclock_read_wallclock(struct pvclock_wall_clock *wall,
22 struct pvclock_vcpu_time_info *vcpu,
23 struct timespec *ts);
Jeremy Fitzhardingee7a3481c2010-10-25 16:53:46 -070024void pvclock_resume(void);
Gerd Hoffmann7af192c2008-06-03 16:17:29 +020025
Marcelo Tosattid63285e2013-10-11 21:39:25 -030026void pvclock_touch_watchdogs(void);
27
Paolo Bonzini3aed64f2016-06-09 13:06:08 +020028static __always_inline
29unsigned pvclock_read_begin(const struct pvclock_vcpu_time_info *src)
30{
31 unsigned version = src->version & ~1;
32 /* Make sure that the version is read before the data. */
33 virt_rmb();
34 return version;
35}
36
37static __always_inline
38bool pvclock_read_retry(const struct pvclock_vcpu_time_info *src,
39 unsigned version)
40{
41 /* Make sure that the version is re-read after the data. */
42 virt_rmb();
43 return unlikely(version != src->version);
44}
45
Zachary Amsden347bb442010-08-19 22:07:29 -100046/*
47 * Scale a 64-bit delta by scaling and multiplying by a 32-bit fraction,
48 * yielding a 64-bit result.
49 */
50static inline u64 pvclock_scale_delta(u64 delta, u32 mul_frac, int shift)
51{
52 u64 product;
53#ifdef __i386__
54 u32 tmp1, tmp2;
Zachary Amsdende2d1a52011-06-15 20:50:04 -070055#else
56 ulong tmp;
Zachary Amsden347bb442010-08-19 22:07:29 -100057#endif
58
59 if (shift < 0)
60 delta >>= -shift;
61 else
62 delta <<= shift;
63
64#ifdef __i386__
65 __asm__ (
66 "mul %5 ; "
67 "mov %4,%%eax ; "
68 "mov %%edx,%4 ; "
69 "mul %5 ; "
70 "xor %5,%5 ; "
71 "add %4,%%eax ; "
72 "adc %5,%%edx ; "
73 : "=A" (product), "=r" (tmp1), "=r" (tmp2)
74 : "a" ((u32)delta), "1" ((u32)(delta >> 32)), "2" (mul_frac) );
75#elif defined(__x86_64__)
76 __asm__ (
Duncan Sands3b217112011-08-30 10:58:22 +020077 "mulq %[mul_frac] ; shrd $32, %[hi], %[lo]"
Zachary Amsdende2d1a52011-06-15 20:50:04 -070078 : [lo]"=a"(product),
79 [hi]"=d"(tmp)
80 : "0"(delta),
81 [mul_frac]"rm"((u64)mul_frac));
Zachary Amsden347bb442010-08-19 22:07:29 -100082#else
83#error implement me!
84#endif
85
86 return product;
87}
88
Marcelo Tosattidce2db02012-11-27 23:28:51 -020089static __always_inline
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +010090u64 __pvclock_read_cycles(const struct pvclock_vcpu_time_info *src, u64 tsc)
Marcelo Tosattidce2db02012-11-27 23:28:51 -020091{
Paolo Bonzini108b2492016-09-01 14:21:03 +020092 u64 delta = tsc - src->tsc_timestamp;
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +010093 u64 offset = pvclock_scale_delta(delta, src->tsc_to_system_mul,
Paolo Bonzini3aed64f2016-06-09 13:06:08 +020094 src->tsc_shift);
95 return src->system_time + offset;
Marcelo Tosattidce2db02012-11-27 23:28:51 -020096}
97
Marcelo Tosatti71056ae2012-11-27 23:28:55 -020098struct pvclock_vsyscall_time_info {
99 struct pvclock_vcpu_time_info pvti;
Marcelo Tosatti71056ae2012-11-27 23:28:55 -0200100} __attribute__((__aligned__(SMP_CACHE_BYTES)));
101
102#define PVTI_SIZE sizeof(struct pvclock_vsyscall_time_info)
Marcelo Tosatti71056ae2012-11-27 23:28:55 -0200103
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700104#endif /* _ASM_X86_PVCLOCK_H */