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 * The code should have no internal unresolved relocations.
8 * Check with readelf after changing.
9 * Also alternative() doesn't work.
12 * Copyright (c) 2017 Oracle and/or its affiliates. All rights reserved.
15 #include <linux/kernel.h>
16 #include <linux/time.h>
17 #include <linux/string.h>
19 #include <asm/unistd.h>
20 #include <asm/timex.h>
21 #include <asm/clocksource.h>
25 #define SYSCALL_STRING \
28 " sub %%g0, %%o0, %%o0;" \
31 #define SYSCALL_STRING \
34 " sub %%g0, %%o0, %%o0;" \
38 #define SYSCALL_CLOBBERS \
39 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7", \
40 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15", \
41 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23", \
42 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31", \
43 "f32", "f34", "f36", "f38", "f40", "f42", "f44", "f46", \
44 "f48", "f50", "f52", "f54", "f56", "f58", "f60", "f62", \
48 * Compute the vvar page's address in the process address space, and return it
49 * as a pointer to the vvar_data.
51 notrace static __always_inline struct vvar_data *get_vvar_data(void)
56 * vdso data page is the first vDSO page so grab the PC
57 * and move up a page to get to the data page.
59 __asm__("rd %%pc, %0" : "=r" (ret));
63 return (struct vvar_data *) ret;
66 notrace static long vdso_fallback_gettime(long clock, struct timespec *ts)
68 register long num __asm__("g1") = __NR_clock_gettime;
69 register long o0 __asm__("o0") = clock;
70 register long o1 __asm__("o1") = (long) ts;
72 __asm__ __volatile__(SYSCALL_STRING : "=r" (o0) : "r" (num),
73 "0" (o0), "r" (o1) : SYSCALL_CLOBBERS);
77 notrace static long vdso_fallback_gettimeofday(struct timeval *tv, struct timezone *tz)
79 register long num __asm__("g1") = __NR_gettimeofday;
80 register long o0 __asm__("o0") = (long) tv;
81 register long o1 __asm__("o1") = (long) tz;
83 __asm__ __volatile__(SYSCALL_STRING : "=r" (o0) : "r" (num),
84 "0" (o0), "r" (o1) : SYSCALL_CLOBBERS);
89 notrace static __always_inline u64 vread_tick(void)
93 __asm__ __volatile__("1:\n\t"
95 ".pushsection .tick_patch, \"a\"\n\t"
96 ".word 1b - ., 1f - .\n\t"
98 ".pushsection .tick_patch_replacement, \"ax\"\n\t"
106 notrace static __always_inline u64 vread_tick(void)
108 register unsigned long long ret asm("o4");
110 __asm__ __volatile__("1:\n\t"
112 "srlx %L0, 32, %H0\n\t"
113 ".pushsection .tick_patch, \"a\"\n\t"
114 ".word 1b - ., 1f - .\n\t"
116 ".pushsection .tick_patch_replacement, \"ax\"\n\t"
118 "rd %%asr24, %L0\n\t"
125 notrace static __always_inline u64 vgetsns(struct vvar_data *vvar)
130 cycles = vread_tick();
131 v = (cycles - vvar->clock.cycle_last) & vvar->clock.mask;
132 return v * vvar->clock.mult;
135 notrace static __always_inline int do_realtime(struct vvar_data *vvar,
142 seq = vvar_read_begin(vvar);
143 ts->tv_sec = vvar->wall_time_sec;
144 ns = vvar->wall_time_snsec;
146 ns >>= vvar->clock.shift;
147 } while (unlikely(vvar_read_retry(vvar, seq)));
149 ts->tv_sec += __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns);
155 notrace static __always_inline int do_monotonic(struct vvar_data *vvar,
162 seq = vvar_read_begin(vvar);
163 ts->tv_sec = vvar->monotonic_time_sec;
164 ns = vvar->monotonic_time_snsec;
166 ns >>= vvar->clock.shift;
167 } while (unlikely(vvar_read_retry(vvar, seq)));
169 ts->tv_sec += __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns);
175 notrace static int do_realtime_coarse(struct vvar_data *vvar,
181 seq = vvar_read_begin(vvar);
182 ts->tv_sec = vvar->wall_time_coarse_sec;
183 ts->tv_nsec = vvar->wall_time_coarse_nsec;
184 } while (unlikely(vvar_read_retry(vvar, seq)));
188 notrace static int do_monotonic_coarse(struct vvar_data *vvar,
194 seq = vvar_read_begin(vvar);
195 ts->tv_sec = vvar->monotonic_time_coarse_sec;
196 ts->tv_nsec = vvar->monotonic_time_coarse_nsec;
197 } while (unlikely(vvar_read_retry(vvar, seq)));
203 __vdso_clock_gettime(clockid_t clock, struct timespec *ts)
205 struct vvar_data *vvd = get_vvar_data();
209 if (unlikely(vvd->vclock_mode == VCLOCK_NONE))
211 return do_realtime(vvd, ts);
212 case CLOCK_MONOTONIC:
213 if (unlikely(vvd->vclock_mode == VCLOCK_NONE))
215 return do_monotonic(vvd, ts);
216 case CLOCK_REALTIME_COARSE:
217 return do_realtime_coarse(vvd, ts);
218 case CLOCK_MONOTONIC_COARSE:
219 return do_monotonic_coarse(vvd, ts);
222 * Unknown clock ID ? Fall back to the syscall.
224 return vdso_fallback_gettime(clock, ts);
227 clock_gettime(clockid_t, struct timespec *)
228 __attribute__((weak, alias("__vdso_clock_gettime")));
231 __vdso_gettimeofday(struct timeval *tv, struct timezone *tz)
233 struct vvar_data *vvd = get_vvar_data();
235 if (likely(vvd->vclock_mode != VCLOCK_NONE)) {
236 if (likely(tv != NULL)) {
240 } *tstv = (union tstv_t *) tv;
241 do_realtime(vvd, &tstv->ts);
243 * Assign before dividing to ensure that the division is
244 * done in the type of tv_usec, not tv_nsec.
246 * There cannot be > 1 billion usec in a second:
247 * do_realtime() has already distributed such overflow
248 * into tv_sec. So we can assign it to an int safely.
250 tstv->tv.tv_usec = tstv->ts.tv_nsec;
251 tstv->tv.tv_usec /= 1000;
253 if (unlikely(tz != NULL)) {
254 /* Avoid memcpy. Some old compilers fail to inline it */
255 tz->tz_minuteswest = vvd->tz_minuteswest;
256 tz->tz_dsttime = vvd->tz_dsttime;
260 return vdso_fallback_gettimeofday(tv, tz);
263 gettimeofday(struct timeval *, struct timezone *)
264 __attribute__((weak, alias("__vdso_gettimeofday")));