timekeeping.h 6.1 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
2 3 4
#ifndef _LINUX_TIMEKEEPING_H
#define _LINUX_TIMEKEEPING_H

5
#include <linux/errno.h>
6

7 8 9 10 11
/* Included from linux/ktime.h */

void timekeeping_init(void);
extern int timekeeping_suspended;

12 13 14 15
/* Architecture timer tick functions: */
extern void update_process_times(int user);
extern void xtime_update(unsigned long ticks);

16 17 18
/*
 * Get and set timeofday
 */
19
extern int do_settimeofday64(const struct timespec64 *ts);
20 21
extern int do_sys_settimeofday64(const struct timespec64 *tv,
				 const struct timezone *tz);
22

23
/*
24
 * timespec64 based interfaces
25
 */
26
extern void ktime_get_raw_ts64(struct timespec64 *ts);
27
extern void ktime_get_ts64(struct timespec64 *ts);
28
extern void ktime_get_real_ts64(struct timespec64 *tv);
29 30 31 32 33 34 35 36
extern void ktime_get_coarse_ts64(struct timespec64 *ts);
extern void ktime_get_coarse_real_ts64(struct timespec64 *ts);

void getboottime64(struct timespec64 *ts);

/*
 * time64_t base interfaces
 */
37
extern time64_t ktime_get_seconds(void);
38
extern time64_t __ktime_get_real_seconds(void);
39
extern time64_t ktime_get_real_seconds(void);
40

41 42 43
/*
 * ktime_t based interfaces
 */
44

45 46
enum tk_offsets {
	TK_OFFS_REAL,
47
	TK_OFFS_BOOT,
48 49 50 51
	TK_OFFS_TAI,
	TK_OFFS_MAX,
};

52
extern ktime_t ktime_get(void);
53
extern ktime_t ktime_get_with_offset(enum tk_offsets offs);
54
extern ktime_t ktime_get_coarse_with_offset(enum tk_offsets offs);
55
extern ktime_t ktime_mono_to_any(ktime_t tmono, enum tk_offsets offs);
56
extern ktime_t ktime_get_raw(void);
57
extern u32 ktime_get_resolution_ns(void);
58

59 60 61 62 63 64 65 66
/**
 * ktime_get_real - get the real (wall-) time in ktime_t format
 */
static inline ktime_t ktime_get_real(void)
{
	return ktime_get_with_offset(TK_OFFS_REAL);
}

67 68 69 70 71
static inline ktime_t ktime_get_coarse_real(void)
{
	return ktime_get_coarse_with_offset(TK_OFFS_REAL);
}

72 73 74 75 76 77 78 79 80 81 82
/**
 * ktime_get_boottime - Returns monotonic time since boot in ktime_t format
 *
 * This is similar to CLOCK_MONTONIC/ktime_get, but also includes the
 * time spent in suspend.
 */
static inline ktime_t ktime_get_boottime(void)
{
	return ktime_get_with_offset(TK_OFFS_BOOT);
}

83 84 85 86 87
static inline ktime_t ktime_get_coarse_boottime(void)
{
	return ktime_get_coarse_with_offset(TK_OFFS_BOOT);
}

88 89 90 91 92 93 94 95
/**
 * ktime_get_clocktai - Returns the TAI time of day in ktime_t format
 */
static inline ktime_t ktime_get_clocktai(void)
{
	return ktime_get_with_offset(TK_OFFS_TAI);
}

96 97 98 99 100
static inline ktime_t ktime_get_coarse_clocktai(void)
{
	return ktime_get_coarse_with_offset(TK_OFFS_TAI);
}

101 102 103 104 105 106 107 108
/**
 * ktime_mono_to_real - Convert monotonic time to clock realtime
 */
static inline ktime_t ktime_mono_to_real(ktime_t mono)
{
	return ktime_mono_to_any(mono, TK_OFFS_REAL);
}

109 110 111 112 113 114 115 116 117 118
static inline u64 ktime_get_ns(void)
{
	return ktime_to_ns(ktime_get());
}

static inline u64 ktime_get_real_ns(void)
{
	return ktime_to_ns(ktime_get_real());
}

119 120 121 122 123
static inline u64 ktime_get_boot_ns(void)
{
	return ktime_to_ns(ktime_get_boottime());
}

P
Peter Zijlstra 已提交
124 125 126 127 128
static inline u64 ktime_get_tai_ns(void)
{
	return ktime_to_ns(ktime_get_clocktai());
}

129 130 131 132 133
static inline u64 ktime_get_raw_ns(void)
{
	return ktime_to_ns(ktime_get_raw());
}

134
extern u64 ktime_get_mono_fast_ns(void);
P
Peter Zijlstra 已提交
135
extern u64 ktime_get_raw_fast_ns(void);
136
extern u64 ktime_get_boot_fast_ns(void);
137
extern u64 ktime_get_real_fast_ns(void);
138

139 140 141
/*
 * timespec64 interfaces utilizing the ktime based ones
 */
142
static inline void ktime_get_boottime_ts64(struct timespec64 *ts)
143 144 145 146
{
	*ts = ktime_to_timespec64(ktime_get_boottime());
}

147
static inline void ktime_get_clocktai_ts64(struct timespec64 *ts)
148 149 150 151
{
	*ts = ktime_to_timespec64(ktime_get_clocktai());
}

152 153 154
/*
 * RTC specific
 */
155 156 157
extern bool timekeeping_rtc_skipsuspend(void);
extern bool timekeeping_rtc_skipresume(void);

158 159
extern void timekeeping_inject_sleeptime64(struct timespec64 *delta);

160 161 162 163 164 165
/*
 * struct system_time_snapshot - simultaneous raw/real time capture with
 *	counter value
 * @cycles:	Clocksource counter value to produce the system times
 * @real:	Realtime system time
 * @raw:	Monotonic raw system time
166 167
 * @clock_was_set_seq:	The sequence number of clock was set events
 * @cs_was_changed_seq:	The sequence number of clocksource change events
168 169
 */
struct system_time_snapshot {
170
	u64		cycles;
171 172
	ktime_t		real;
	ktime_t		raw;
173 174
	unsigned int	clock_was_set_seq;
	u8		cs_was_changed_seq;
175 176
};

177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
/*
 * struct system_device_crosststamp - system/device cross-timestamp
 *	(syncronized capture)
 * @device:		Device time
 * @sys_realtime:	Realtime simultaneous with device time
 * @sys_monoraw:	Monotonic raw simultaneous with device time
 */
struct system_device_crosststamp {
	ktime_t device;
	ktime_t sys_realtime;
	ktime_t sys_monoraw;
};

/*
 * struct system_counterval_t - system counter value with the pointer to the
 *	corresponding clocksource
 * @cycles:	System counter value
 * @cs:		Clocksource corresponding to system counter value. Used by
 *	timekeeping code to verify comparibility of two cycle values
 */
struct system_counterval_t {
198
	u64			cycles;
199 200 201 202 203 204 205 206 207 208 209
	struct clocksource	*cs;
};

/*
 * Get cross timestamp between system clock and device clock
 */
extern int get_device_system_crosststamp(
			int (*get_time_fn)(ktime_t *device_time,
				struct system_counterval_t *system_counterval,
				void *ctx),
			void *ctx,
210
			struct system_time_snapshot *history,
211 212
			struct system_device_crosststamp *xtstamp);

213 214 215 216 217
/*
 * Simultaneously snapshot realtime and monotonic raw clocks
 */
extern void ktime_get_snapshot(struct system_time_snapshot *systime_snapshot);

218 219 220 221 222
/*
 * Persistent clock related interfaces
 */
extern int persistent_clock_is_local;

223
extern void read_persistent_clock64(struct timespec64 *ts);
224
extern void read_boot_clock64(struct timespec64 *ts);
225
extern int update_persistent_clock64(struct timespec64 now);
226

227 228 229 230
/*
 * deprecated aliases, don't use in new code
 */
#define getnstimeofday64(ts)		ktime_get_real_ts64(ts)
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
#define get_monotonic_boottime64(ts)	ktime_get_boottime_ts64(ts)
#define getrawmonotonic64(ts)		ktime_get_raw_ts64(ts)
#define timekeeping_clocktai64(ts)	ktime_get_clocktai_ts64(ts)

static inline struct timespec64 current_kernel_time64(void)
{
	struct timespec64 ts;

	ktime_get_coarse_real_ts64(&ts);

	return ts;
}

static inline struct timespec64 get_monotonic_coarse64(void)
{
	struct timespec64 ts;

	ktime_get_coarse_ts64(&ts);

	return ts;
}
252 253

#endif