blob: 415dae6bf1f57ef7e6254b1f7aff8193cf3384f7 [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);
Thomas Gleixner8b094cd2014-07-16 21:04:02 +000022/*
23 * Kernel time accessors
24 */
Baolin Wang8758a242015-07-29 20:09:43 +080025struct timespec64 current_kernel_time64(void);
Baolin Wang8758a242015-07-29 20:09:43 +080026
Thomas Gleixner8b094cd2014-07-16 21:04:02 +000027/*
Arnd Bergmann65469112017-10-19 13:14:49 +020028 * timespec64 based interfaces
Thomas Gleixner8b094cd2014-07-16 21:04:02 +000029 */
John Stultz334334b2014-11-07 11:20:40 -080030struct timespec64 get_monotonic_coarse64(void);
John Stultzcdba2ec2014-11-07 11:03:20 -080031extern void getrawmonotonic64(struct timespec64 *ts);
Thomas Gleixnerd6d29892014-07-16 21:04:04 +000032extern void ktime_get_ts64(struct timespec64 *ts);
Arnd Bergmannedca71f2018-04-27 15:40:13 +020033extern void ktime_get_real_ts64(struct timespec64 *tv);
Heena Sirwani9e3680b2014-10-29 16:01:16 +053034extern time64_t ktime_get_seconds(void);
Arnd Bergmann6909e292017-10-12 16:06:11 +020035extern time64_t __ktime_get_real_seconds(void);
Heena Sirwanidbe7aa62014-10-29 16:01:50 +053036extern time64_t ktime_get_real_seconds(void);
Thomas Gleixner8b094cd2014-07-16 21:04:02 +000037
John Stultzd08c0cd2014-12-08 12:00:09 -080038extern void getboottime64(struct timespec64 *ts);
Thomas Gleixnerd6d29892014-07-16 21:04:04 +000039
Thomas Gleixner8b094cd2014-07-16 21:04:02 +000040
41/*
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);
Thomas Gleixner9a6b5192014-07-16 21:04:22 +000054extern ktime_t ktime_mono_to_any(ktime_t tmono, enum tk_offsets offs);
Thomas Gleixnerf519b1a2014-07-16 21:05:04 +000055extern ktime_t ktime_get_raw(void);
Harald Geyer6374f912015-04-07 11:12:35 +000056extern u32 ktime_get_resolution_ns(void);
Thomas Gleixner8b094cd2014-07-16 21:04:02 +000057
Thomas Gleixnerf5264d52014-07-16 21:04:14 +000058/**
59 * ktime_get_real - get the real (wall-) time in ktime_t format
60 */
61static inline ktime_t ktime_get_real(void)
62{
63 return ktime_get_with_offset(TK_OFFS_REAL);
64}
65
Thomas Gleixnerb82c8172014-07-16 21:04:16 +000066/**
Thomas Gleixnera3ed0e432018-04-25 15:33:38 +020067 * ktime_get_boottime - Returns monotonic time since boot in ktime_t format
68 *
69 * This is similar to CLOCK_MONTONIC/ktime_get, but also includes the
70 * time spent in suspend.
71 */
72static inline ktime_t ktime_get_boottime(void)
73{
74 return ktime_get_with_offset(TK_OFFS_BOOT);
75}
76
77/**
Thomas Gleixnerafab07c2014-07-16 21:04:17 +000078 * ktime_get_clocktai - Returns the TAI time of day in ktime_t format
79 */
80static inline ktime_t ktime_get_clocktai(void)
81{
82 return ktime_get_with_offset(TK_OFFS_TAI);
83}
84
Thomas Gleixner9a6b5192014-07-16 21:04:22 +000085/**
86 * ktime_mono_to_real - Convert monotonic time to clock realtime
87 */
88static inline ktime_t ktime_mono_to_real(ktime_t mono)
89{
90 return ktime_mono_to_any(mono, TK_OFFS_REAL);
91}
92
Thomas Gleixner897994e2014-07-16 21:04:29 +000093static inline u64 ktime_get_ns(void)
94{
95 return ktime_to_ns(ktime_get());
96}
97
98static inline u64 ktime_get_real_ns(void)
99{
100 return ktime_to_ns(ktime_get_real());
101}
102
Thomas Gleixnera3ed0e432018-04-25 15:33:38 +0200103static inline u64 ktime_get_boot_ns(void)
104{
105 return ktime_to_ns(ktime_get_boottime());
106}
107
Peter Zijlstrafe5fba02015-03-17 12:39:10 +0100108static inline u64 ktime_get_tai_ns(void)
109{
110 return ktime_to_ns(ktime_get_clocktai());
111}
112
Thomas Gleixnerf519b1a2014-07-16 21:05:04 +0000113static inline u64 ktime_get_raw_ns(void)
114{
115 return ktime_to_ns(ktime_get_raw());
116}
117
Thomas Gleixner4396e052014-07-16 21:05:23 +0000118extern u64 ktime_get_mono_fast_ns(void);
Peter Zijlstraf09cb9a2015-03-19 09:39:08 +0100119extern u64 ktime_get_raw_fast_ns(void);
Thomas Gleixnera3ed0e432018-04-25 15:33:38 +0200120extern u64 ktime_get_boot_fast_ns(void);
Thomas Gleixner4c3711d2017-08-31 17:12:48 +0200121extern u64 ktime_get_real_fast_ns(void);
Thomas Gleixner4396e052014-07-16 21:05:23 +0000122
Thomas Gleixner8b094cd2014-07-16 21:04:02 +0000123/*
Arnd Bergmann65469112017-10-19 13:14:49 +0200124 * timespec64 interfaces utilizing the ktime based ones
Thomas Gleixner48f18fd2014-07-16 21:04:57 +0000125 */
Thomas Gleixnera3ed0e432018-04-25 15:33:38 +0200126static inline void get_monotonic_boottime64(struct timespec64 *ts)
127{
128 *ts = ktime_to_timespec64(ktime_get_boottime());
129}
130
Deepa Dinamani3c9c12f2017-03-26 12:04:14 -0700131static inline void timekeeping_clocktai64(struct timespec64 *ts)
132{
133 *ts = ktime_to_timespec64(ktime_get_clocktai());
134}
135
Thomas Gleixner48f18fd2014-07-16 21:04:57 +0000136/*
Thomas Gleixner8b094cd2014-07-16 21:04:02 +0000137 * RTC specific
138 */
Xunlei Pang0fa88cb2015-04-01 20:34:38 -0700139extern bool timekeeping_rtc_skipsuspend(void);
140extern bool timekeeping_rtc_skipresume(void);
141
pang.xunlei04d90892014-11-18 19:15:17 +0800142extern void timekeeping_inject_sleeptime64(struct timespec64 *delta);
143
Thomas Gleixner8b094cd2014-07-16 21:04:02 +0000144/*
Christopher S. Hall9da0f492016-02-22 03:15:20 -0800145 * struct system_time_snapshot - simultaneous raw/real time capture with
146 * counter value
147 * @cycles: Clocksource counter value to produce the system times
148 * @real: Realtime system time
149 * @raw: Monotonic raw system time
Christopher S. Hall2c756fe2016-02-22 03:15:23 -0800150 * @clock_was_set_seq: The sequence number of clock was set events
151 * @cs_was_changed_seq: The sequence number of clocksource change events
Christopher S. Hall9da0f492016-02-22 03:15:20 -0800152 */
153struct system_time_snapshot {
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100154 u64 cycles;
Christopher S. Hall9da0f492016-02-22 03:15:20 -0800155 ktime_t real;
156 ktime_t raw;
Christopher S. Hall2c756fe2016-02-22 03:15:23 -0800157 unsigned int clock_was_set_seq;
158 u8 cs_was_changed_seq;
Christopher S. Hall9da0f492016-02-22 03:15:20 -0800159};
160
161/*
Christopher S. Hall8006c242016-02-22 03:15:22 -0800162 * struct system_device_crosststamp - system/device cross-timestamp
163 * (syncronized capture)
164 * @device: Device time
165 * @sys_realtime: Realtime simultaneous with device time
166 * @sys_monoraw: Monotonic raw simultaneous with device time
167 */
168struct system_device_crosststamp {
169 ktime_t device;
170 ktime_t sys_realtime;
171 ktime_t sys_monoraw;
172};
173
174/*
175 * struct system_counterval_t - system counter value with the pointer to the
176 * corresponding clocksource
177 * @cycles: System counter value
178 * @cs: Clocksource corresponding to system counter value. Used by
179 * timekeeping code to verify comparibility of two cycle values
180 */
181struct system_counterval_t {
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100182 u64 cycles;
Christopher S. Hall8006c242016-02-22 03:15:22 -0800183 struct clocksource *cs;
184};
185
186/*
187 * Get cross timestamp between system clock and device clock
188 */
189extern int get_device_system_crosststamp(
190 int (*get_time_fn)(ktime_t *device_time,
191 struct system_counterval_t *system_counterval,
192 void *ctx),
193 void *ctx,
Christopher S. Hall2c756fe2016-02-22 03:15:23 -0800194 struct system_time_snapshot *history,
Christopher S. Hall8006c242016-02-22 03:15:22 -0800195 struct system_device_crosststamp *xtstamp);
196
197/*
Christopher S. Hall9da0f492016-02-22 03:15:20 -0800198 * Simultaneously snapshot realtime and monotonic raw clocks
199 */
200extern void ktime_get_snapshot(struct system_time_snapshot *systime_snapshot);
201
202/*
Thomas Gleixner8b094cd2014-07-16 21:04:02 +0000203 * Persistent clock related interfaces
204 */
Thomas Gleixner8b094cd2014-07-16 21:04:02 +0000205extern int persistent_clock_is_local;
206
Xunlei Pang2ee96632015-04-01 20:34:22 -0700207extern void read_persistent_clock64(struct timespec64 *ts);
Xunlei Pang9a806dd2015-04-01 20:34:21 -0700208extern void read_boot_clock64(struct timespec64 *ts);
Xunlei Pang3c00a1f2015-04-01 20:34:23 -0700209extern int update_persistent_clock64(struct timespec64 now);
Thomas Gleixner8b094cd2014-07-16 21:04:02 +0000210
Arnd Bergmannedca71f2018-04-27 15:40:13 +0200211/*
212 * deprecated aliases, don't use in new code
213 */
214#define getnstimeofday64(ts) ktime_get_real_ts64(ts)
Thomas Gleixner8b094cd2014-07-16 21:04:02 +0000215
216#endif