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>
18 #include <asm/unistd.h>
20 #include <linux/math64.h>
21 #include <linux/time.h>
23 #define gtod (&VVAR(vsyscall_gtod_data))
25 extern int __vdso_clock_gettime(clockid_t clock
, struct timespec
*ts
);
26 extern int __vdso_gettimeofday(struct timeval
*tv
, struct timezone
*tz
);
27 extern time_t __vdso_time(time_t *t
);
29 #ifdef CONFIG_HPET_TIMER
31 __attribute__((visibility("hidden")));
33 static notrace cycle_t
vread_hpet(void)
35 return *(const volatile u32
*)(&hpet_page
+ HPET_COUNTER
);
41 #include <linux/kernel.h>
42 #include <asm/vsyscall.h>
43 #include <asm/fixmap.h>
44 #include <asm/pvclock.h>
46 notrace
static long vdso_fallback_gettime(long clock
, struct timespec
*ts
)
49 asm("syscall" : "=a" (ret
) :
50 "0" (__NR_clock_gettime
), "D" (clock
), "S" (ts
) : "memory");
54 notrace
static long vdso_fallback_gtod(struct timeval
*tv
, struct timezone
*tz
)
58 asm("syscall" : "=a" (ret
) :
59 "0" (__NR_gettimeofday
), "D" (tv
), "S" (tz
) : "memory");
63 #ifdef CONFIG_PARAVIRT_CLOCK
65 static notrace
const struct pvclock_vsyscall_time_info
*get_pvti(int cpu
)
67 const struct pvclock_vsyscall_time_info
*pvti_base
;
68 int idx
= cpu
/ (PAGE_SIZE
/PVTI_SIZE
);
69 int offset
= cpu
% (PAGE_SIZE
/PVTI_SIZE
);
71 BUG_ON(PVCLOCK_FIXMAP_BEGIN
+ idx
> PVCLOCK_FIXMAP_END
);
73 pvti_base
= (struct pvclock_vsyscall_time_info
*)
74 __fix_to_virt(PVCLOCK_FIXMAP_BEGIN
+idx
);
76 return &pvti_base
[offset
];
79 static notrace cycle_t
vread_pvclock(int *mode
)
81 const struct pvclock_vsyscall_time_info
*pvti
;
90 * Note: hypervisor must guarantee that:
91 * 1. cpu ID number maps 1:1 to per-CPU pvclock time info.
92 * 2. that per-CPU pvclock time info is updated if the
93 * underlying CPU changes.
94 * 3. that version is increased whenever underlying CPU
99 cpu
= __getcpu() & VGETCPU_CPU_MASK
;
100 /* TODO: We can put vcpu id into higher bits of pvti.version.
101 * This will save a couple of cycles by getting rid of
102 * __getcpu() calls (Gleb).
105 pvti
= get_pvti(cpu
);
107 version
= __pvclock_read_cycles(&pvti
->pvti
, &ret
, &flags
);
110 * Test we're still on the cpu as well as the version.
111 * We could have been migrated just after the first
112 * vgetcpu but before fetching the version, so we
113 * wouldn't notice a version change.
115 cpu1
= __getcpu() & VGETCPU_CPU_MASK
;
116 } while (unlikely(cpu
!= cpu1
||
117 (pvti
->pvti
.version
& 1) ||
118 pvti
->pvti
.version
!= version
));
120 if (unlikely(!(flags
& PVCLOCK_TSC_STABLE_BIT
)))
123 /* refer to tsc.c read_tsc() comment for rationale */
124 last
= gtod
->cycle_last
;
126 if (likely(ret
>= last
))
135 notrace
static long vdso_fallback_gettime(long clock
, struct timespec
*ts
)
140 "mov %%ebx, %%edx \n"
142 "call __kernel_vsyscall \n"
143 "mov %%edx, %%ebx \n"
145 : "0" (__NR_clock_gettime
), "g" (clock
), "c" (ts
)
150 notrace
static long vdso_fallback_gtod(struct timeval
*tv
, struct timezone
*tz
)
155 "mov %%ebx, %%edx \n"
157 "call __kernel_vsyscall \n"
158 "mov %%edx, %%ebx \n"
160 : "0" (__NR_gettimeofday
), "g" (tv
), "c" (tz
)
165 #ifdef CONFIG_PARAVIRT_CLOCK
167 static notrace cycle_t
vread_pvclock(int *mode
)
176 notrace
static cycle_t
vread_tsc(void)
182 * Empirically, a fence (of type that depends on the CPU)
183 * before rdtsc is enough to ensure that rdtsc is ordered
184 * with respect to loads. The various CPU manuals are unclear
185 * as to whether rdtsc can be reordered with later loads,
186 * but no one has ever seen it happen.
189 ret
= (cycle_t
)__native_read_tsc();
191 last
= gtod
->cycle_last
;
193 if (likely(ret
>= last
))
197 * GCC likes to generate cmov here, but this branch is extremely
198 * predictable (it's just a funciton of time and the likely is
199 * very likely) and there's a data dependence, so force GCC
200 * to generate a branch instead. I don't barrier() because
201 * we don't actually need a barrier, and if this function
202 * ever gets inlined it will generate worse code.
208 notrace
static inline u64
vgetsns(int *mode
)
213 if (gtod
->vclock_mode
== VCLOCK_TSC
)
214 cycles
= vread_tsc();
215 #ifdef CONFIG_HPET_TIMER
216 else if (gtod
->vclock_mode
== VCLOCK_HPET
)
217 cycles
= vread_hpet();
219 #ifdef CONFIG_PARAVIRT_CLOCK
220 else if (gtod
->vclock_mode
== VCLOCK_PVCLOCK
)
221 cycles
= vread_pvclock(mode
);
225 v
= (cycles
- gtod
->cycle_last
) & gtod
->mask
;
226 return v
* gtod
->mult
;
229 /* Code size doesn't matter (vdso is 4k anyway) and this is faster. */
230 notrace
static int __always_inline
do_realtime(struct timespec
*ts
)
237 seq
= gtod_read_begin(gtod
);
238 mode
= gtod
->vclock_mode
;
239 ts
->tv_sec
= gtod
->wall_time_sec
;
240 ns
= gtod
->wall_time_snsec
;
241 ns
+= vgetsns(&mode
);
243 } while (unlikely(gtod_read_retry(gtod
, seq
)));
245 ts
->tv_sec
+= __iter_div_u64_rem(ns
, NSEC_PER_SEC
, &ns
);
251 notrace
static int __always_inline
do_monotonic(struct timespec
*ts
)
258 seq
= gtod_read_begin(gtod
);
259 mode
= gtod
->vclock_mode
;
260 ts
->tv_sec
= gtod
->monotonic_time_sec
;
261 ns
= gtod
->monotonic_time_snsec
;
262 ns
+= vgetsns(&mode
);
264 } while (unlikely(gtod_read_retry(gtod
, seq
)));
266 ts
->tv_sec
+= __iter_div_u64_rem(ns
, NSEC_PER_SEC
, &ns
);
272 notrace
static void do_realtime_coarse(struct timespec
*ts
)
276 seq
= gtod_read_begin(gtod
);
277 ts
->tv_sec
= gtod
->wall_time_coarse_sec
;
278 ts
->tv_nsec
= gtod
->wall_time_coarse_nsec
;
279 } while (unlikely(gtod_read_retry(gtod
, seq
)));
282 notrace
static void do_monotonic_coarse(struct timespec
*ts
)
286 seq
= gtod_read_begin(gtod
);
287 ts
->tv_sec
= gtod
->monotonic_time_coarse_sec
;
288 ts
->tv_nsec
= gtod
->monotonic_time_coarse_nsec
;
289 } while (unlikely(gtod_read_retry(gtod
, seq
)));
292 notrace
int __vdso_clock_gettime(clockid_t clock
, struct timespec
*ts
)
296 if (do_realtime(ts
) == VCLOCK_NONE
)
299 case CLOCK_MONOTONIC
:
300 if (do_monotonic(ts
) == VCLOCK_NONE
)
303 case CLOCK_REALTIME_COARSE
:
304 do_realtime_coarse(ts
);
306 case CLOCK_MONOTONIC_COARSE
:
307 do_monotonic_coarse(ts
);
315 return vdso_fallback_gettime(clock
, ts
);
317 int clock_gettime(clockid_t
, struct timespec
*)
318 __attribute__((weak
, alias("__vdso_clock_gettime")));
320 notrace
int __vdso_gettimeofday(struct timeval
*tv
, struct timezone
*tz
)
322 if (likely(tv
!= NULL
)) {
323 if (unlikely(do_realtime((struct timespec
*)tv
) == VCLOCK_NONE
))
324 return vdso_fallback_gtod(tv
, tz
);
327 if (unlikely(tz
!= NULL
)) {
328 tz
->tz_minuteswest
= gtod
->tz_minuteswest
;
329 tz
->tz_dsttime
= gtod
->tz_dsttime
;
334 int gettimeofday(struct timeval
*, struct timezone
*)
335 __attribute__((weak
, alias("__vdso_gettimeofday")));
338 * This will break when the xtime seconds get inaccurate, but that is
341 notrace
time_t __vdso_time(time_t *t
)
343 /* This is atomic on x86 so we don't need any locks. */
344 time_t result
= ACCESS_ONCE(gtod
->wall_time_sec
);
351 __attribute__((weak
, alias("__vdso_time")));