1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_TIMEKEEPING_H
3 #define _LINUX_TIMEKEEPING_H
5 #include <linux/errno.h>
6 #include <linux/clocksource_ids.h>
7 #include <linux/ktime.h>
9 /* Included from linux/ktime.h */
11 void timekeeping_init(void);
12 extern int timekeeping_suspended;
14 /* Architecture timer tick functions: */
15 extern void legacy_timer_tick(unsigned long ticks);
18 * Get and set timeofday
20 extern int do_settimeofday64(const struct timespec64 *ts);
21 extern int do_sys_settimeofday64(const struct timespec64 *tv,
22 const struct timezone *tz);
25 * ktime_get() family: read the current time in a multitude of ways,
27 * The default time reference is CLOCK_MONOTONIC, starting at
28 * boot time but not counting the time spent in suspend.
29 * For other references, use the functions with "real", "clocktai",
30 * "boottime" and "raw" suffixes.
32 * To get the time in a different format, use the ones wit
33 * "ns", "ts64" and "seconds" suffix.
35 * See Documentation/core-api/timekeeping.rst for more details.
40 * timespec64 based interfaces
42 extern void ktime_get_raw_ts64(struct timespec64 *ts);
43 extern void ktime_get_ts64(struct timespec64 *ts);
44 extern void ktime_get_real_ts64(struct timespec64 *tv);
45 extern void ktime_get_coarse_ts64(struct timespec64 *ts);
46 extern void ktime_get_coarse_real_ts64(struct timespec64 *ts);
48 void getboottime64(struct timespec64 *ts);
51 * time64_t base interfaces
53 extern time64_t ktime_get_seconds(void);
54 extern time64_t __ktime_get_real_seconds(void);
55 extern time64_t ktime_get_real_seconds(void);
58 * ktime_t based interfaces
68 extern ktime_t ktime_get(void);
69 extern ktime_t ktime_get_with_offset(enum tk_offsets offs);
70 extern ktime_t ktime_get_coarse_with_offset(enum tk_offsets offs);
71 extern ktime_t ktime_mono_to_any(ktime_t tmono, enum tk_offsets offs);
72 extern ktime_t ktime_get_raw(void);
73 extern u32 ktime_get_resolution_ns(void);
76 * ktime_get_real - get the real (wall-) time in ktime_t format
78 static inline ktime_t ktime_get_real(void)
80 return ktime_get_with_offset(TK_OFFS_REAL);
83 static inline ktime_t ktime_get_coarse_real(void)
85 return ktime_get_coarse_with_offset(TK_OFFS_REAL);
89 * ktime_get_boottime - Returns monotonic time since boot in ktime_t format
91 * This is similar to CLOCK_MONTONIC/ktime_get, but also includes the
92 * time spent in suspend.
94 static inline ktime_t ktime_get_boottime(void)
96 return ktime_get_with_offset(TK_OFFS_BOOT);
99 static inline ktime_t ktime_get_coarse_boottime(void)
101 return ktime_get_coarse_with_offset(TK_OFFS_BOOT);
105 * ktime_get_clocktai - Returns the TAI time of day in ktime_t format
107 static inline ktime_t ktime_get_clocktai(void)
109 return ktime_get_with_offset(TK_OFFS_TAI);
112 static inline ktime_t ktime_get_coarse_clocktai(void)
114 return ktime_get_coarse_with_offset(TK_OFFS_TAI);
117 static inline ktime_t ktime_get_coarse(void)
119 struct timespec64 ts;
121 ktime_get_coarse_ts64(&ts);
122 return timespec64_to_ktime(ts);
125 static inline u64 ktime_get_coarse_ns(void)
127 return ktime_to_ns(ktime_get_coarse());
130 static inline u64 ktime_get_coarse_real_ns(void)
132 return ktime_to_ns(ktime_get_coarse_real());
135 static inline u64 ktime_get_coarse_boottime_ns(void)
137 return ktime_to_ns(ktime_get_coarse_boottime());
140 static inline u64 ktime_get_coarse_clocktai_ns(void)
142 return ktime_to_ns(ktime_get_coarse_clocktai());
146 * ktime_mono_to_real - Convert monotonic time to clock realtime
148 static inline ktime_t ktime_mono_to_real(ktime_t mono)
150 return ktime_mono_to_any(mono, TK_OFFS_REAL);
153 static inline u64 ktime_get_ns(void)
155 return ktime_to_ns(ktime_get());
158 static inline u64 ktime_get_real_ns(void)
160 return ktime_to_ns(ktime_get_real());
163 static inline u64 ktime_get_boottime_ns(void)
165 return ktime_to_ns(ktime_get_boottime());
168 static inline u64 ktime_get_clocktai_ns(void)
170 return ktime_to_ns(ktime_get_clocktai());
173 static inline u64 ktime_get_raw_ns(void)
175 return ktime_to_ns(ktime_get_raw());
178 extern u64 ktime_get_mono_fast_ns(void);
179 extern u64 ktime_get_raw_fast_ns(void);
180 extern u64 ktime_get_boot_fast_ns(void);
181 extern u64 ktime_get_tai_fast_ns(void);
182 extern u64 ktime_get_real_fast_ns(void);
185 * timespec64/time64_t interfaces utilizing the ktime based ones
186 * for API completeness, these could be implemented more efficiently
189 static inline void ktime_get_boottime_ts64(struct timespec64 *ts)
191 *ts = ktime_to_timespec64(ktime_get_boottime());
194 static inline void ktime_get_coarse_boottime_ts64(struct timespec64 *ts)
196 *ts = ktime_to_timespec64(ktime_get_coarse_boottime());
199 static inline time64_t ktime_get_boottime_seconds(void)
201 return ktime_divns(ktime_get_coarse_boottime(), NSEC_PER_SEC);
204 static inline void ktime_get_clocktai_ts64(struct timespec64 *ts)
206 *ts = ktime_to_timespec64(ktime_get_clocktai());
209 static inline void ktime_get_coarse_clocktai_ts64(struct timespec64 *ts)
211 *ts = ktime_to_timespec64(ktime_get_coarse_clocktai());
214 static inline time64_t ktime_get_clocktai_seconds(void)
216 return ktime_divns(ktime_get_coarse_clocktai(), NSEC_PER_SEC);
222 extern bool timekeeping_rtc_skipsuspend(void);
223 extern bool timekeeping_rtc_skipresume(void);
225 extern void timekeeping_inject_sleeptime64(const struct timespec64 *delta);
228 * struct ktime_timestanps - Simultaneous mono/boot/real timestamps
229 * @mono: Monotonic timestamp
230 * @boot: Boottime timestamp
231 * @real: Realtime timestamp
233 struct ktime_timestamps {
240 * struct system_time_snapshot - simultaneous raw/real time capture with
242 * @cycles: Clocksource counter value to produce the system times
243 * @real: Realtime system time
244 * @raw: Monotonic raw system time
245 * @clock_was_set_seq: The sequence number of clock was set events
246 * @cs_was_changed_seq: The sequence number of clocksource change events
248 struct system_time_snapshot {
252 enum clocksource_ids cs_id;
253 unsigned int clock_was_set_seq;
254 u8 cs_was_changed_seq;
258 * struct system_device_crosststamp - system/device cross-timestamp
259 * (synchronized capture)
260 * @device: Device time
261 * @sys_realtime: Realtime simultaneous with device time
262 * @sys_monoraw: Monotonic raw simultaneous with device time
264 struct system_device_crosststamp {
266 ktime_t sys_realtime;
271 * struct system_counterval_t - system counter value with the pointer to the
272 * corresponding clocksource
273 * @cycles: System counter value
274 * @cs: Clocksource corresponding to system counter value. Used by
275 * timekeeping code to verify comparibility of two cycle values
277 struct system_counterval_t {
279 struct clocksource *cs;
283 * Get cross timestamp between system clock and device clock
285 extern int get_device_system_crosststamp(
286 int (*get_time_fn)(ktime_t *device_time,
287 struct system_counterval_t *system_counterval,
290 struct system_time_snapshot *history,
291 struct system_device_crosststamp *xtstamp);
294 * Simultaneously snapshot realtime and monotonic raw clocks
296 extern void ktime_get_snapshot(struct system_time_snapshot *systime_snapshot);
298 /* NMI safe mono/boot/realtime timestamps */
299 extern void ktime_get_fast_timestamps(struct ktime_timestamps *snap);
302 * Persistent clock related interfaces
304 extern int persistent_clock_is_local;
306 extern void read_persistent_clock64(struct timespec64 *ts);
307 void read_persistent_wall_and_boot_offset(struct timespec64 *wall_clock,
308 struct timespec64 *boot_offset);
309 #ifdef CONFIG_GENERIC_CMOS_UPDATE
310 extern int update_persistent_clock64(struct timespec64 now);