blob: 0b873d455bda1eece0512dadbaf6828db8a747d3 [file] [log] [blame]
Andi Kleen2aae9502007-07-21 17:10:01 +02001/*
2 * Copyright 2006 Andi Kleen, SUSE Labs.
3 * Subject to the GNU Public License, v.2
4 *
5 * Fast user context implementation of clock_gettime and gettimeofday.
6 *
7 * The code should have no internal unresolved relocations.
8 * Check with readelf after changing.
9 * Also alternative() doesn't work.
10 */
11
Ingo Molnar2b7d0392008-11-12 13:17:38 +010012/* Disable profiling for userspace code: */
Steven Rostedt2ed84ee2008-11-12 15:24:24 -050013#define DISABLE_BRANCH_PROFILING
Ingo Molnar2b7d0392008-11-12 13:17:38 +010014
Andi Kleen2aae9502007-07-21 17:10:01 +020015#include <linux/kernel.h>
16#include <linux/posix-timers.h>
17#include <linux/time.h>
18#include <linux/string.h>
19#include <asm/vsyscall.h>
20#include <asm/vgtod.h>
21#include <asm/timex.h>
22#include <asm/hpet.h>
23#include <asm/unistd.h>
24#include <asm/io.h>
Andi Kleen2aae9502007-07-21 17:10:01 +020025
Andy Lutomirski8c49d9a2011-05-23 09:31:24 -040026#define gtod (&VVAR(vsyscall_gtod_data))
Andi Kleen2aae9502007-07-21 17:10:01 +020027
Steven Rostedt23adec52008-05-12 21:20:41 +020028notrace static long vdso_fallback_gettime(long clock, struct timespec *ts)
Andi Kleen2aae9502007-07-21 17:10:01 +020029{
30 long ret;
31 asm("syscall" : "=a" (ret) :
32 "0" (__NR_clock_gettime),"D" (clock), "S" (ts) : "memory");
33 return ret;
34}
35
Steven Rostedt23adec52008-05-12 21:20:41 +020036notrace static inline long vgetns(void)
Andi Kleen2aae9502007-07-21 17:10:01 +020037{
Andi Kleen95b08672007-09-11 14:02:09 +020038 long v;
Andi Kleen2aae9502007-07-21 17:10:01 +020039 cycles_t (*vread)(void);
40 vread = gtod->clock.vread;
Andi Kleen95b08672007-09-11 14:02:09 +020041 v = (vread() - gtod->clock.cycle_last) & gtod->clock.mask;
42 return (v * gtod->clock.mult) >> gtod->clock.shift;
Andi Kleen2aae9502007-07-21 17:10:01 +020043}
44
Steven Rostedt23adec52008-05-12 21:20:41 +020045notrace static noinline int do_realtime(struct timespec *ts)
Andi Kleen2aae9502007-07-21 17:10:01 +020046{
47 unsigned long seq, ns;
48 do {
49 seq = read_seqbegin(&gtod->lock);
50 ts->tv_sec = gtod->wall_time_sec;
51 ts->tv_nsec = gtod->wall_time_nsec;
52 ns = vgetns();
53 } while (unlikely(read_seqretry(&gtod->lock, seq)));
54 timespec_add_ns(ts, ns);
55 return 0;
56}
57
58/* Copy of the version in kernel/time.c which we cannot directly access */
Steven Rostedt23adec52008-05-12 21:20:41 +020059notrace static void
60vset_normalized_timespec(struct timespec *ts, long sec, long nsec)
Andi Kleen2aae9502007-07-21 17:10:01 +020061{
62 while (nsec >= NSEC_PER_SEC) {
63 nsec -= NSEC_PER_SEC;
64 ++sec;
65 }
66 while (nsec < 0) {
67 nsec += NSEC_PER_SEC;
68 --sec;
69 }
70 ts->tv_sec = sec;
71 ts->tv_nsec = nsec;
72}
73
Steven Rostedt23adec52008-05-12 21:20:41 +020074notrace static noinline int do_monotonic(struct timespec *ts)
Andi Kleen2aae9502007-07-21 17:10:01 +020075{
76 unsigned long seq, ns, secs;
77 do {
78 seq = read_seqbegin(&gtod->lock);
79 secs = gtod->wall_time_sec;
80 ns = gtod->wall_time_nsec + vgetns();
81 secs += gtod->wall_to_monotonic.tv_sec;
82 ns += gtod->wall_to_monotonic.tv_nsec;
83 } while (unlikely(read_seqretry(&gtod->lock, seq)));
84 vset_normalized_timespec(ts, secs, ns);
85 return 0;
86}
87
john stultzda15cfd2009-08-19 19:13:34 -070088notrace static noinline int do_realtime_coarse(struct timespec *ts)
89{
90 unsigned long seq;
91 do {
92 seq = read_seqbegin(&gtod->lock);
93 ts->tv_sec = gtod->wall_time_coarse.tv_sec;
94 ts->tv_nsec = gtod->wall_time_coarse.tv_nsec;
95 } while (unlikely(read_seqretry(&gtod->lock, seq)));
96 return 0;
97}
98
99notrace static noinline int do_monotonic_coarse(struct timespec *ts)
100{
101 unsigned long seq, ns, secs;
102 do {
103 seq = read_seqbegin(&gtod->lock);
104 secs = gtod->wall_time_coarse.tv_sec;
105 ns = gtod->wall_time_coarse.tv_nsec;
106 secs += gtod->wall_to_monotonic.tv_sec;
107 ns += gtod->wall_to_monotonic.tv_nsec;
108 } while (unlikely(read_seqretry(&gtod->lock, seq)));
109 vset_normalized_timespec(ts, secs, ns);
110 return 0;
111}
112
Steven Rostedt23adec52008-05-12 21:20:41 +0200113notrace int __vdso_clock_gettime(clockid_t clock, struct timespec *ts)
Andi Kleen2aae9502007-07-21 17:10:01 +0200114{
john stultzda15cfd2009-08-19 19:13:34 -0700115 if (likely(gtod->sysctl_enabled))
Andi Kleen2aae9502007-07-21 17:10:01 +0200116 switch (clock) {
117 case CLOCK_REALTIME:
john stultzda15cfd2009-08-19 19:13:34 -0700118 if (likely(gtod->clock.vread))
119 return do_realtime(ts);
120 break;
Andi Kleen2aae9502007-07-21 17:10:01 +0200121 case CLOCK_MONOTONIC:
john stultzda15cfd2009-08-19 19:13:34 -0700122 if (likely(gtod->clock.vread))
123 return do_monotonic(ts);
124 break;
125 case CLOCK_REALTIME_COARSE:
126 return do_realtime_coarse(ts);
127 case CLOCK_MONOTONIC_COARSE:
128 return do_monotonic_coarse(ts);
Andi Kleen2aae9502007-07-21 17:10:01 +0200129 }
130 return vdso_fallback_gettime(clock, ts);
131}
132int clock_gettime(clockid_t, struct timespec *)
133 __attribute__((weak, alias("__vdso_clock_gettime")));
134
Steven Rostedt23adec52008-05-12 21:20:41 +0200135notrace int __vdso_gettimeofday(struct timeval *tv, struct timezone *tz)
Andi Kleen2aae9502007-07-21 17:10:01 +0200136{
137 long ret;
138 if (likely(gtod->sysctl_enabled && gtod->clock.vread)) {
John Wright2f65dd42009-04-29 14:32:01 -0600139 if (likely(tv != NULL)) {
140 BUILD_BUG_ON(offsetof(struct timeval, tv_usec) !=
141 offsetof(struct timespec, tv_nsec) ||
142 sizeof(*tv) != sizeof(struct timespec));
143 do_realtime((struct timespec *)tv);
144 tv->tv_usec /= 1000;
145 }
Andi Kleen2aae9502007-07-21 17:10:01 +0200146 if (unlikely(tz != NULL)) {
Andi Kleena1289642008-05-14 16:10:42 -0700147 /* Avoid memcpy. Some old compilers fail to inline it */
148 tz->tz_minuteswest = gtod->sys_tz.tz_minuteswest;
149 tz->tz_dsttime = gtod->sys_tz.tz_dsttime;
Andi Kleen2aae9502007-07-21 17:10:01 +0200150 }
151 return 0;
152 }
153 asm("syscall" : "=a" (ret) :
154 "0" (__NR_gettimeofday), "D" (tv), "S" (tz) : "memory");
155 return ret;
156}
157int gettimeofday(struct timeval *, struct timezone *)
158 __attribute__((weak, alias("__vdso_gettimeofday")));