2 * Copyright 2006 Andi Kleen, SUSE Labs.
3 * Subject to the GNU Public License, v.2
5 * Fast user context implementation of clock_gettime, gettimeofday, and time.
7 * 32 Bit compat layer by Stefani Seibold <stefani@seibold.net>
8 * sponsored by Rohde & Schwarz GmbH & Co. KG Munich/Germany
10 * The code should have no internal unresolved relocations.
11 * Check with readelf after changing.
14 #include <uapi/linux/time.h>
15 #include <asm/vgtod.h>
17 #include <asm/unistd.h>
19 #include <asm/pvclock.h>
20 #include <asm/mshyperv.h>
21 #include <linux/math64.h>
22 #include <linux/time.h>
23 #include <linux/kernel.h>
25 #define gtod (&VVAR(vsyscall_gtod_data))
27 extern int __vdso_clock_gettime(clockid_t clock
, struct timespec
*ts
);
28 extern int __vdso_gettimeofday(struct timeval
*tv
, struct timezone
*tz
);
29 extern time_t __vdso_time(time_t *t
);
31 #ifdef CONFIG_PARAVIRT_CLOCK
32 extern u8 pvclock_page
33 __attribute__((visibility("hidden")));
36 #ifdef CONFIG_HYPERV_TSCPAGE
37 extern u8 hvclock_page
38 __attribute__((visibility("hidden")));
43 notrace
static long vdso_fallback_gettime(long clock
, struct timespec
*ts
)
46 asm("syscall" : "=a" (ret
) :
47 "0" (__NR_clock_gettime
), "D" (clock
), "S" (ts
) : "memory");
51 notrace
static long vdso_fallback_gtod(struct timeval
*tv
, struct timezone
*tz
)
55 asm("syscall" : "=a" (ret
) :
56 "0" (__NR_gettimeofday
), "D" (tv
), "S" (tz
) : "memory");
63 notrace
static long vdso_fallback_gettime(long clock
, struct timespec
*ts
)
70 "call __kernel_vsyscall \n"
73 : "0" (__NR_clock_gettime
), "g" (clock
), "c" (ts
)
78 notrace
static long vdso_fallback_gtod(struct timeval
*tv
, struct timezone
*tz
)
85 "call __kernel_vsyscall \n"
88 : "0" (__NR_gettimeofday
), "g" (tv
), "c" (tz
)
95 #ifdef CONFIG_PARAVIRT_CLOCK
96 static notrace
const struct pvclock_vsyscall_time_info
*get_pvti0(void)
98 return (const struct pvclock_vsyscall_time_info
*)&pvclock_page
;
101 static notrace u64
vread_pvclock(int *mode
)
103 const struct pvclock_vcpu_time_info
*pvti
= &get_pvti0()->pvti
;
109 * Note: The kernel and hypervisor must guarantee that cpu ID
110 * number maps 1:1 to per-CPU pvclock time info.
112 * Because the hypervisor is entirely unaware of guest userspace
113 * preemption, it cannot guarantee that per-CPU pvclock time
114 * info is updated if the underlying CPU changes or that that
115 * version is increased whenever underlying CPU changes.
117 * On KVM, we are guaranteed that pvti updates for any vCPU are
118 * atomic as seen by *all* vCPUs. This is an even stronger
119 * guarantee than we get with a normal seqlock.
121 * On Xen, we don't appear to have that guarantee, but Xen still
122 * supplies a valid seqlock using the version field.
124 * We only do pvclock vdso timing at all if
125 * PVCLOCK_TSC_STABLE_BIT is set, and we interpret that bit to
126 * mean that all vCPUs have matching pvti and that the TSC is
127 * synced, so we can just look at vCPU 0's pvti.
131 version
= pvclock_read_begin(pvti
);
133 if (unlikely(!(pvti
->flags
& PVCLOCK_TSC_STABLE_BIT
))) {
138 ret
= __pvclock_read_cycles(pvti
, rdtsc_ordered());
139 } while (pvclock_read_retry(pvti
, version
));
141 /* refer to vread_tsc() comment for rationale */
142 last
= gtod
->cycle_last
;
144 if (likely(ret
>= last
))
150 #ifdef CONFIG_HYPERV_TSCPAGE
151 static notrace u64
vread_hvclock(int *mode
)
153 const struct ms_hyperv_tsc_page
*tsc_pg
=
154 (const struct ms_hyperv_tsc_page
*)&hvclock_page
;
155 u64 current_tick
= hv_read_tsc_page(tsc_pg
);
157 if (current_tick
!= U64_MAX
)
165 notrace
static u64
vread_tsc(void)
167 u64 ret
= (u64
)rdtsc_ordered();
168 u64 last
= gtod
->cycle_last
;
170 if (likely(ret
>= last
))
174 * GCC likes to generate cmov here, but this branch is extremely
175 * predictable (it's just a function of time and the likely is
176 * very likely) and there's a data dependence, so force GCC
177 * to generate a branch instead. I don't barrier() because
178 * we don't actually need a barrier, and if this function
179 * ever gets inlined it will generate worse code.
185 notrace
static inline u64
vgetsns(int *mode
)
190 if (gtod
->vclock_mode
== VCLOCK_TSC
)
191 cycles
= vread_tsc();
192 #ifdef CONFIG_PARAVIRT_CLOCK
193 else if (gtod
->vclock_mode
== VCLOCK_PVCLOCK
)
194 cycles
= vread_pvclock(mode
);
196 #ifdef CONFIG_HYPERV_TSCPAGE
197 else if (gtod
->vclock_mode
== VCLOCK_HVCLOCK
)
198 cycles
= vread_hvclock(mode
);
202 v
= (cycles
- gtod
->cycle_last
) & gtod
->mask
;
203 return v
* gtod
->mult
;
206 /* Code size doesn't matter (vdso is 4k anyway) and this is faster. */
207 notrace
static int __always_inline
do_realtime(struct timespec
*ts
)
214 seq
= gtod_read_begin(gtod
);
215 mode
= gtod
->vclock_mode
;
216 ts
->tv_sec
= gtod
->wall_time_sec
;
217 ns
= gtod
->wall_time_snsec
;
218 ns
+= vgetsns(&mode
);
220 } while (unlikely(gtod_read_retry(gtod
, seq
)));
222 ts
->tv_sec
+= __iter_div_u64_rem(ns
, NSEC_PER_SEC
, &ns
);
228 notrace
static int __always_inline
do_monotonic(struct timespec
*ts
)
235 seq
= gtod_read_begin(gtod
);
236 mode
= gtod
->vclock_mode
;
237 ts
->tv_sec
= gtod
->monotonic_time_sec
;
238 ns
= gtod
->monotonic_time_snsec
;
239 ns
+= vgetsns(&mode
);
241 } while (unlikely(gtod_read_retry(gtod
, seq
)));
243 ts
->tv_sec
+= __iter_div_u64_rem(ns
, NSEC_PER_SEC
, &ns
);
249 notrace
static void do_realtime_coarse(struct timespec
*ts
)
253 seq
= gtod_read_begin(gtod
);
254 ts
->tv_sec
= gtod
->wall_time_coarse_sec
;
255 ts
->tv_nsec
= gtod
->wall_time_coarse_nsec
;
256 } while (unlikely(gtod_read_retry(gtod
, seq
)));
259 notrace
static void do_monotonic_coarse(struct timespec
*ts
)
263 seq
= gtod_read_begin(gtod
);
264 ts
->tv_sec
= gtod
->monotonic_time_coarse_sec
;
265 ts
->tv_nsec
= gtod
->monotonic_time_coarse_nsec
;
266 } while (unlikely(gtod_read_retry(gtod
, seq
)));
269 notrace
int __vdso_clock_gettime(clockid_t clock
, struct timespec
*ts
)
273 if (do_realtime(ts
) == VCLOCK_NONE
)
276 case CLOCK_MONOTONIC
:
277 if (do_monotonic(ts
) == VCLOCK_NONE
)
280 case CLOCK_REALTIME_COARSE
:
281 do_realtime_coarse(ts
);
283 case CLOCK_MONOTONIC_COARSE
:
284 do_monotonic_coarse(ts
);
292 return vdso_fallback_gettime(clock
, ts
);
294 int clock_gettime(clockid_t
, struct timespec
*)
295 __attribute__((weak
, alias("__vdso_clock_gettime")));
297 notrace
int __vdso_gettimeofday(struct timeval
*tv
, struct timezone
*tz
)
299 if (likely(tv
!= NULL
)) {
300 if (unlikely(do_realtime((struct timespec
*)tv
) == VCLOCK_NONE
))
301 return vdso_fallback_gtod(tv
, tz
);
304 if (unlikely(tz
!= NULL
)) {
305 tz
->tz_minuteswest
= gtod
->tz_minuteswest
;
306 tz
->tz_dsttime
= gtod
->tz_dsttime
;
311 int gettimeofday(struct timeval
*, struct timezone
*)
312 __attribute__((weak
, alias("__vdso_gettimeofday")));
315 * This will break when the xtime seconds get inaccurate, but that is
318 notrace
time_t __vdso_time(time_t *t
)
320 /* This is atomic on x86 so we don't need any locks. */
321 time_t result
= READ_ONCE(gtod
->wall_time_sec
);
327 time_t time(time_t *t
)
328 __attribute__((weak
, alias("__vdso_time")));