blob: 86bc2026efcea4fd9af338eb19cb63bcea3a9547 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Thomas Gleixner8b094cd2014-07-16 21:04:02 +00002#ifndef _LINUX_TIMEKEEPING_H
3#define _LINUX_TIMEKEEPING_H
4
Christoph Hellwigb536fd52016-09-22 07:48:17 -07005#include <linux/errno.h>
Baolin Wang86d34732016-04-08 14:02:12 +08006
Thomas Gleixner8b094cd2014-07-16 21:04:02 +00007/* Included from linux/ktime.h */
8
9void timekeeping_init(void);
10extern int timekeeping_suspended;
11
Ingo Molnar93b5a9a2017-02-05 14:53:36 +010012/* Architecture timer tick functions: */
13extern void update_process_times(int user);
14extern void xtime_update(unsigned long ticks);
15
Thomas Gleixner8b094cd2014-07-16 21:04:02 +000016/*
17 * Get and set timeofday
18 */
pang.xunlei21f7eca2014-11-18 19:15:16 +080019extern int do_settimeofday64(const struct timespec64 *ts);
Baolin Wang86d34732016-04-08 14:02:12 +080020extern int do_sys_settimeofday64(const struct timespec64 *tv,
21 const struct timezone *tz);
Baolin Wang8758a242015-07-29 20:09:43 +080022
Thomas Gleixner8b094cd2014-07-16 21:04:02 +000023/*
Arnd Bergmann65469112017-10-19 13:14:49 +020024 * timespec64 based interfaces
Thomas Gleixner8b094cd2014-07-16 21:04:02 +000025 */
Arnd Bergmannfb7fcc92018-04-27 15:40:14 +020026extern void ktime_get_raw_ts64(struct timespec64 *ts);
Thomas Gleixnerd6d29892014-07-16 21:04:04 +000027extern void ktime_get_ts64(struct timespec64 *ts);
Arnd Bergmannedca71f2018-04-27 15:40:13 +020028extern void ktime_get_real_ts64(struct timespec64 *tv);
Arnd Bergmannfb7fcc92018-04-27 15:40:14 +020029extern void ktime_get_coarse_ts64(struct timespec64 *ts);
30extern void ktime_get_coarse_real_ts64(struct timespec64 *ts);
31
32void getboottime64(struct timespec64 *ts);
33
34/*
35 * time64_t base interfaces
36 */
Heena Sirwani9e3680b2014-10-29 16:01:16 +053037extern time64_t ktime_get_seconds(void);
Arnd Bergmann6909e292017-10-12 16:06:11 +020038extern time64_t __ktime_get_real_seconds(void);
Heena Sirwanidbe7aa62014-10-29 16:01:50 +053039extern time64_t ktime_get_real_seconds(void);
Thomas Gleixner8b094cd2014-07-16 21:04:02 +000040
Thomas Gleixner8b094cd2014-07-16 21:04:02 +000041/*
42 * ktime_t based interfaces
43 */
Thomas Gleixnera3ed0e432018-04-25 15:33:38 +020044
Thomas Gleixner0077dc62014-07-16 21:04:13 +000045enum tk_offsets {
46 TK_OFFS_REAL,
Thomas Gleixnera3ed0e432018-04-25 15:33:38 +020047 TK_OFFS_BOOT,
Thomas Gleixner0077dc62014-07-16 21:04:13 +000048 TK_OFFS_TAI,
49 TK_OFFS_MAX,
50};
51
Thomas Gleixner8b094cd2014-07-16 21:04:02 +000052extern ktime_t ktime_get(void);
Thomas Gleixner0077dc62014-07-16 21:04:13 +000053extern ktime_t ktime_get_with_offset(enum tk_offsets offs);
Arnd Bergmannb9ff6042018-04-27 15:40:15 +020054extern ktime_t ktime_get_coarse_with_offset(enum tk_offsets offs);
Thomas Gleixner9a6b5192014-07-16 21:04:22 +000055extern ktime_t ktime_mono_to_any(ktime_t tmono, enum tk_offsets offs);
Thomas Gleixnerf519b1a2014-07-16 21:05:04 +000056extern ktime_t ktime_get_raw(void);
Harald Geyer6374f912015-04-07 11:12:35 +000057extern u32 ktime_get_resolution_ns(void);
Thomas Gleixner8b094cd2014-07-16 21:04:02 +000058
Thomas Gleixnerf5264d52014-07-16 21:04:14 +000059/**
60 * ktime_get_real - get the real (wall-) time in ktime_t format
61 */
62static inline ktime_t ktime_get_real(void)
63{
64 return ktime_get_with_offset(TK_OFFS_REAL);
65}
66
Arnd Bergmannb9ff6042018-04-27 15:40:15 +020067static inline ktime_t ktime_get_coarse_real(void)
68{
69 return ktime_get_coarse_with_offset(TK_OFFS_REAL);
70}
71
Thomas Gleixnerb82c8172014-07-16 21:04:16 +000072/**
Thomas Gleixnera3ed0e432018-04-25 15:33:38 +020073 * ktime_get_boottime - Returns monotonic time since boot in ktime_t format
74 *
75 * This is similar to CLOCK_MONTONIC/ktime_get, but also includes the
76 * time spent in suspend.
77 */
78static inline ktime_t ktime_get_boottime(void)
79{
80 return ktime_get_with_offset(TK_OFFS_BOOT);
81}
82
Arnd Bergmannb9ff6042018-04-27 15:40:15 +020083static inline ktime_t ktime_get_coarse_boottime(void)
84{
85 return ktime_get_coarse_with_offset(TK_OFFS_BOOT);
86}
87
Thomas Gleixnera3ed0e432018-04-25 15:33:38 +020088/**
Thomas Gleixnerafab07c2014-07-16 21:04:17 +000089 * ktime_get_clocktai - Returns the TAI time of day in ktime_t format
90 */
91static inline ktime_t ktime_get_clocktai(void)
92{
93 return ktime_get_with_offset(TK_OFFS_TAI);
94}
95
Arnd Bergmannb9ff6042018-04-27 15:40:15 +020096static inline ktime_t ktime_get_coarse_clocktai(void)
97{
98 return ktime_get_coarse_with_offset(TK_OFFS_TAI);
99}
100
Thomas Gleixner9a6b5192014-07-16 21:04:22 +0000101/**
102 * ktime_mono_to_real - Convert monotonic time to clock realtime
103 */
104static inline ktime_t ktime_mono_to_real(ktime_t mono)
105{
106 return ktime_mono_to_any(mono, TK_OFFS_REAL);
107}
108
Thomas Gleixner897994e2014-07-16 21:04:29 +0000109static inline u64 ktime_get_ns(void)
110{
111 return ktime_to_ns(ktime_get());
112}
113
114static inline u64 ktime_get_real_ns(void)
115{
116 return ktime_to_ns(ktime_get_real());
117}
118
Thomas Gleixnera3ed0e432018-04-25 15:33:38 +0200119static inline u64 ktime_get_boot_ns(void)
120{
121 return ktime_to_ns(ktime_get_boottime());
122}
123
Peter Zijlstrafe5fba02015-03-17 12:39:10 +0100124static inline u64 ktime_get_tai_ns(void)
125{
126 return ktime_to_ns(ktime_get_clocktai());
127}
128
Thomas Gleixnerf519b1a2014-07-16 21:05:04 +0000129static inline u64 ktime_get_raw_ns(void)
130{
131 return ktime_to_ns(ktime_get_raw());
132}
133
Thomas Gleixner4396e052014-07-16 21:05:23 +0000134extern u64 ktime_get_mono_fast_ns(void);
Peter Zijlstraf09cb9a2015-03-19 09:39:08 +0100135extern u64 ktime_get_raw_fast_ns(void);
Thomas Gleixnera3ed0e432018-04-25 15:33:38 +0200136extern u64 ktime_get_boot_fast_ns(void);
Thomas Gleixner4c3711d2017-08-31 17:12:48 +0200137extern u64 ktime_get_real_fast_ns(void);
Thomas Gleixner4396e052014-07-16 21:05:23 +0000138
Thomas Gleixner8b094cd2014-07-16 21:04:02 +0000139/*
Arnd Bergmann06aa3762018-04-27 15:40:16 +0200140 * timespec64/time64_t interfaces utilizing the ktime based ones
141 * for API completeness, these could be implemented more efficiently
142 * if needed.
Thomas Gleixner48f18fd2014-07-16 21:04:57 +0000143 */
Arnd Bergmannfb7fcc92018-04-27 15:40:14 +0200144static inline void ktime_get_boottime_ts64(struct timespec64 *ts)
Thomas Gleixnera3ed0e432018-04-25 15:33:38 +0200145{
146 *ts = ktime_to_timespec64(ktime_get_boottime());
147}
148
Arnd Bergmann06aa3762018-04-27 15:40:16 +0200149static inline void ktime_get_coarse_boottime_ts64(struct timespec64 *ts)
150{
151 *ts = ktime_to_timespec64(ktime_get_coarse_boottime());
152}
153
154static inline time64_t ktime_get_boottime_seconds(void)
155{
156 return ktime_divns(ktime_get_coarse_boottime(), NSEC_PER_SEC);
157}
158
Arnd Bergmannfb7fcc92018-04-27 15:40:14 +0200159static inline void ktime_get_clocktai_ts64(struct timespec64 *ts)
Deepa Dinamani3c9c12f2017-03-26 12:04:14 -0700160{
161 *ts = ktime_to_timespec64(ktime_get_clocktai());
162}
163
Arnd Bergmann06aa3762018-04-27 15:40:16 +0200164static inline void ktime_get_coarse_clocktai_ts64(struct timespec64 *ts)
165{
166 *ts = ktime_to_timespec64(ktime_get_coarse_clocktai());
167}
168
169static inline time64_t ktime_get_clocktai_seconds(void)
170{
171 return ktime_divns(ktime_get_coarse_clocktai(), NSEC_PER_SEC);
172}
173
Thomas Gleixner48f18fd2014-07-16 21:04:57 +0000174/*
Thomas Gleixner8b094cd2014-07-16 21:04:02 +0000175 * RTC specific
176 */
Xunlei Pang0fa88cb2015-04-01 20:34:38 -0700177extern bool timekeeping_rtc_skipsuspend(void);
178extern bool timekeeping_rtc_skipresume(void);
179
pang.xunlei04d90892014-11-18 19:15:17 +0800180extern void timekeeping_inject_sleeptime64(struct timespec64 *delta);
181
Thomas Gleixner8b094cd2014-07-16 21:04:02 +0000182/*
Christopher S. Hall9da0f492016-02-22 03:15:20 -0800183 * struct system_time_snapshot - simultaneous raw/real time capture with
184 * counter value
185 * @cycles: Clocksource counter value to produce the system times
186 * @real: Realtime system time
187 * @raw: Monotonic raw system time
Christopher S. Hall2c756fe2016-02-22 03:15:23 -0800188 * @clock_was_set_seq: The sequence number of clock was set events
189 * @cs_was_changed_seq: The sequence number of clocksource change events
Christopher S. Hall9da0f492016-02-22 03:15:20 -0800190 */
191struct system_time_snapshot {
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100192 u64 cycles;
Christopher S. Hall9da0f492016-02-22 03:15:20 -0800193 ktime_t real;
194 ktime_t raw;
Christopher S. Hall2c756fe2016-02-22 03:15:23 -0800195 unsigned int clock_was_set_seq;
196 u8 cs_was_changed_seq;
Christopher S. Hall9da0f492016-02-22 03:15:20 -0800197};
198
199/*
Christopher S. Hall8006c242016-02-22 03:15:22 -0800200 * struct system_device_crosststamp - system/device cross-timestamp
201 * (syncronized capture)
202 * @device: Device time
203 * @sys_realtime: Realtime simultaneous with device time
204 * @sys_monoraw: Monotonic raw simultaneous with device time
205 */
206struct system_device_crosststamp {
207 ktime_t device;
208 ktime_t sys_realtime;
209 ktime_t sys_monoraw;
210};
211
212/*
213 * struct system_counterval_t - system counter value with the pointer to the
214 * corresponding clocksource
215 * @cycles: System counter value
216 * @cs: Clocksource corresponding to system counter value. Used by
217 * timekeeping code to verify comparibility of two cycle values
218 */
219struct system_counterval_t {
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100220 u64 cycles;
Christopher S. Hall8006c242016-02-22 03:15:22 -0800221 struct clocksource *cs;
222};
223
224/*
225 * Get cross timestamp between system clock and device clock
226 */
227extern int get_device_system_crosststamp(
228 int (*get_time_fn)(ktime_t *device_time,
229 struct system_counterval_t *system_counterval,
230 void *ctx),
231 void *ctx,
Christopher S. Hall2c756fe2016-02-22 03:15:23 -0800232 struct system_time_snapshot *history,
Christopher S. Hall8006c242016-02-22 03:15:22 -0800233 struct system_device_crosststamp *xtstamp);
234
235/*
Christopher S. Hall9da0f492016-02-22 03:15:20 -0800236 * Simultaneously snapshot realtime and monotonic raw clocks
237 */
238extern void ktime_get_snapshot(struct system_time_snapshot *systime_snapshot);
239
240/*
Thomas Gleixner8b094cd2014-07-16 21:04:02 +0000241 * Persistent clock related interfaces
242 */
Thomas Gleixner8b094cd2014-07-16 21:04:02 +0000243extern int persistent_clock_is_local;
244
Xunlei Pang2ee96632015-04-01 20:34:22 -0700245extern void read_persistent_clock64(struct timespec64 *ts);
Xunlei Pang9a806dd2015-04-01 20:34:21 -0700246extern void read_boot_clock64(struct timespec64 *ts);
Xunlei Pang3c00a1f2015-04-01 20:34:23 -0700247extern int update_persistent_clock64(struct timespec64 now);
Thomas Gleixner8b094cd2014-07-16 21:04:02 +0000248
Arnd Bergmannedca71f2018-04-27 15:40:13 +0200249/*
250 * deprecated aliases, don't use in new code
251 */
252#define getnstimeofday64(ts) ktime_get_real_ts64(ts)
Arnd Bergmannfb7fcc92018-04-27 15:40:14 +0200253#define get_monotonic_boottime64(ts) ktime_get_boottime_ts64(ts)
254#define getrawmonotonic64(ts) ktime_get_raw_ts64(ts)
255#define timekeeping_clocktai64(ts) ktime_get_clocktai_ts64(ts)
256
257static inline struct timespec64 current_kernel_time64(void)
258{
259 struct timespec64 ts;
260
261 ktime_get_coarse_real_ts64(&ts);
262
263 return ts;
264}
265
266static inline struct timespec64 get_monotonic_coarse64(void)
267{
268 struct timespec64 ts;
269
270 ktime_get_coarse_ts64(&ts);
271
272 return ts;
273}
Thomas Gleixner8b094cd2014-07-16 21:04:02 +0000274
275#endif