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 with
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 /* Multigrain timestamp interfaces */
49 extern void ktime_get_coarse_real_ts64_mg(struct timespec64
*ts
);
50 extern void ktime_get_real_ts64_mg(struct timespec64
*ts
);
51 extern unsigned long timekeeping_get_mg_floor_swaps(void);
53 void getboottime64(struct timespec64
*ts
);
56 * time64_t base interfaces
58 extern time64_t
ktime_get_seconds(void);
59 extern time64_t
__ktime_get_real_seconds(void);
60 extern time64_t
ktime_get_real_seconds(void);
63 * ktime_t based interfaces
73 extern ktime_t
ktime_get(void);
74 extern ktime_t
ktime_get_with_offset(enum tk_offsets offs
);
75 extern ktime_t
ktime_get_coarse_with_offset(enum tk_offsets offs
);
76 extern ktime_t
ktime_mono_to_any(ktime_t tmono
, enum tk_offsets offs
);
77 extern ktime_t
ktime_get_raw(void);
78 extern u32
ktime_get_resolution_ns(void);
81 * ktime_get_real - get the real (wall-) time in ktime_t format
83 * Returns: real (wall) time in ktime_t format
85 static inline ktime_t
ktime_get_real(void)
87 return ktime_get_with_offset(TK_OFFS_REAL
);
90 static inline ktime_t
ktime_get_coarse_real(void)
92 return ktime_get_coarse_with_offset(TK_OFFS_REAL
);
96 * ktime_get_boottime - Get monotonic time since boot in ktime_t format
98 * This is similar to CLOCK_MONTONIC/ktime_get, but also includes the
99 * time spent in suspend.
101 * Returns: monotonic time since boot in ktime_t format
103 static inline ktime_t
ktime_get_boottime(void)
105 return ktime_get_with_offset(TK_OFFS_BOOT
);
108 static inline ktime_t
ktime_get_coarse_boottime(void)
110 return ktime_get_coarse_with_offset(TK_OFFS_BOOT
);
114 * ktime_get_clocktai - Get the TAI time of day in ktime_t format
116 * Returns: the TAI time of day in ktime_t format
118 static inline ktime_t
ktime_get_clocktai(void)
120 return ktime_get_with_offset(TK_OFFS_TAI
);
123 static inline ktime_t
ktime_get_coarse_clocktai(void)
125 return ktime_get_coarse_with_offset(TK_OFFS_TAI
);
128 static inline ktime_t
ktime_get_coarse(void)
130 struct timespec64 ts
;
132 ktime_get_coarse_ts64(&ts
);
133 return timespec64_to_ktime(ts
);
136 static inline u64
ktime_get_coarse_ns(void)
138 return ktime_to_ns(ktime_get_coarse());
141 static inline u64
ktime_get_coarse_real_ns(void)
143 return ktime_to_ns(ktime_get_coarse_real());
146 static inline u64
ktime_get_coarse_boottime_ns(void)
148 return ktime_to_ns(ktime_get_coarse_boottime());
151 static inline u64
ktime_get_coarse_clocktai_ns(void)
153 return ktime_to_ns(ktime_get_coarse_clocktai());
157 * ktime_mono_to_real - Convert monotonic time to clock realtime
158 * @mono: monotonic time to convert
160 * Returns: time converted to realtime clock
162 static inline ktime_t
ktime_mono_to_real(ktime_t mono
)
164 return ktime_mono_to_any(mono
, TK_OFFS_REAL
);
168 * ktime_get_ns - Get the current time in nanoseconds
170 * Returns: current time converted to nanoseconds
172 static inline u64
ktime_get_ns(void)
174 return ktime_to_ns(ktime_get());
178 * ktime_get_real_ns - Get the current real/wall time in nanoseconds
180 * Returns: current real time converted to nanoseconds
182 static inline u64
ktime_get_real_ns(void)
184 return ktime_to_ns(ktime_get_real());
188 * ktime_get_boottime_ns - Get the monotonic time since boot in nanoseconds
190 * Returns: current boottime converted to nanoseconds
192 static inline u64
ktime_get_boottime_ns(void)
194 return ktime_to_ns(ktime_get_boottime());
198 * ktime_get_clocktai_ns - Get the current TAI time of day in nanoseconds
200 * Returns: current TAI time converted to nanoseconds
202 static inline u64
ktime_get_clocktai_ns(void)
204 return ktime_to_ns(ktime_get_clocktai());
208 * ktime_get_raw_ns - Get the raw monotonic time in nanoseconds
210 * Returns: current raw monotonic time converted to nanoseconds
212 static inline u64
ktime_get_raw_ns(void)
214 return ktime_to_ns(ktime_get_raw());
217 extern u64
ktime_get_mono_fast_ns(void);
218 extern u64
ktime_get_raw_fast_ns(void);
219 extern u64
ktime_get_boot_fast_ns(void);
220 extern u64
ktime_get_tai_fast_ns(void);
221 extern u64
ktime_get_real_fast_ns(void);
224 * timespec64/time64_t interfaces utilizing the ktime based ones
225 * for API completeness, these could be implemented more efficiently
228 static inline void ktime_get_boottime_ts64(struct timespec64
*ts
)
230 *ts
= ktime_to_timespec64(ktime_get_boottime());
233 static inline void ktime_get_coarse_boottime_ts64(struct timespec64
*ts
)
235 *ts
= ktime_to_timespec64(ktime_get_coarse_boottime());
238 static inline time64_t
ktime_get_boottime_seconds(void)
240 return ktime_divns(ktime_get_coarse_boottime(), NSEC_PER_SEC
);
243 static inline void ktime_get_clocktai_ts64(struct timespec64
*ts
)
245 *ts
= ktime_to_timespec64(ktime_get_clocktai());
248 static inline void ktime_get_coarse_clocktai_ts64(struct timespec64
*ts
)
250 *ts
= ktime_to_timespec64(ktime_get_coarse_clocktai());
253 static inline time64_t
ktime_get_clocktai_seconds(void)
255 return ktime_divns(ktime_get_coarse_clocktai(), NSEC_PER_SEC
);
261 extern bool timekeeping_rtc_skipsuspend(void);
262 extern bool timekeeping_rtc_skipresume(void);
264 extern void timekeeping_inject_sleeptime64(const struct timespec64
*delta
);
267 * struct ktime_timestamps - Simultaneous mono/boot/real timestamps
268 * @mono: Monotonic timestamp
269 * @boot: Boottime timestamp
270 * @real: Realtime timestamp
272 struct ktime_timestamps
{
279 * struct system_time_snapshot - simultaneous raw/real time capture with
281 * @cycles: Clocksource counter value to produce the system times
282 * @real: Realtime system time
284 * @raw: Monotonic raw system time
285 * @cs_id: Clocksource ID
286 * @clock_was_set_seq: The sequence number of clock-was-set events
287 * @cs_was_changed_seq: The sequence number of clocksource change events
289 struct system_time_snapshot
{
294 enum clocksource_ids cs_id
;
295 unsigned int clock_was_set_seq
;
296 u8 cs_was_changed_seq
;
300 * struct system_device_crosststamp - system/device cross-timestamp
301 * (synchronized capture)
302 * @device: Device time
303 * @sys_realtime: Realtime simultaneous with device time
304 * @sys_monoraw: Monotonic raw simultaneous with device time
306 struct system_device_crosststamp
{
308 ktime_t sys_realtime
;
313 * struct system_counterval_t - system counter value with the ID of the
314 * corresponding clocksource
315 * @cycles: System counter value
316 * @cs_id: Clocksource ID corresponding to system counter value. Used by
317 * timekeeping code to verify comparability of two cycle values.
318 * The default ID, CSID_GENERIC, does not identify a specific
320 * @use_nsecs: @cycles is in nanoseconds.
322 struct system_counterval_t
{
324 enum clocksource_ids cs_id
;
328 extern bool ktime_real_to_base_clock(ktime_t treal
,
329 enum clocksource_ids base_id
, u64
*cycles
);
330 extern bool timekeeping_clocksource_has_base(enum clocksource_ids id
);
333 * Get cross timestamp between system clock and device clock
335 extern int get_device_system_crosststamp(
336 int (*get_time_fn
)(ktime_t
*device_time
,
337 struct system_counterval_t
*system_counterval
,
340 struct system_time_snapshot
*history
,
341 struct system_device_crosststamp
*xtstamp
);
344 * Simultaneously snapshot realtime and monotonic raw clocks
346 extern void ktime_get_snapshot(struct system_time_snapshot
*systime_snapshot
);
348 /* NMI safe mono/boot/realtime timestamps */
349 extern void ktime_get_fast_timestamps(struct ktime_timestamps
*snap
);
352 * Persistent clock related interfaces
354 extern int persistent_clock_is_local
;
356 extern void read_persistent_clock64(struct timespec64
*ts
);
357 void read_persistent_wall_and_boot_offset(struct timespec64
*wall_clock
,
358 struct timespec64
*boot_offset
);
359 #ifdef CONFIG_GENERIC_CMOS_UPDATE
360 extern int update_persistent_clock64(struct timespec64 now
);