timekeeping.h 6.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
#ifndef _LINUX_TIMEKEEPING_H
#define _LINUX_TIMEKEEPING_H

/* Included from linux/ktime.h */

void timekeeping_init(void);
extern int timekeeping_suspended;

/*
 * Get and set timeofday
 */
extern void do_gettimeofday(struct timeval *tv);
13
extern int do_settimeofday64(const struct timespec64 *ts);
14 15 16 17 18 19 20
extern int do_sys_settimeofday(const struct timespec *tv,
			       const struct timezone *tz);

/*
 * Kernel time accessors
 */
unsigned long get_seconds(void);
21
struct timespec64 current_kernel_time64(void);
22 23 24
/* does not take xtime_lock */
struct timespec __current_kernel_time(void);

25 26 27 28 29 30 31
static inline struct timespec current_kernel_time(void)
{
	struct timespec64 now = current_kernel_time64();

	return timespec64_to_timespec(now);
}

32 33 34
/*
 * timespec based interfaces
 */
35
struct timespec64 get_monotonic_coarse64(void);
36
extern void getrawmonotonic64(struct timespec64 *ts);
37
extern void ktime_get_ts64(struct timespec64 *ts);
38
extern time64_t ktime_get_seconds(void);
39
extern time64_t ktime_get_real_seconds(void);
40 41 42

extern int __getnstimeofday64(struct timespec64 *tv);
extern void getnstimeofday64(struct timespec64 *tv);
43
extern void getboottime64(struct timespec64 *ts);
44 45

#if BITS_PER_LONG == 64
46 47 48 49 50 51 52 53
/**
 * Deprecated. Use do_settimeofday64().
 */
static inline int do_settimeofday(const struct timespec *ts)
{
	return do_settimeofday64(ts);
}

54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
static inline int __getnstimeofday(struct timespec *ts)
{
	return __getnstimeofday64(ts);
}

static inline void getnstimeofday(struct timespec *ts)
{
	getnstimeofday64(ts);
}

static inline void ktime_get_ts(struct timespec *ts)
{
	ktime_get_ts64(ts);
}

static inline void ktime_get_real_ts(struct timespec *ts)
{
	getnstimeofday64(ts);
}

74 75 76 77 78
static inline void getrawmonotonic(struct timespec *ts)
{
	getrawmonotonic64(ts);
}

79 80 81 82
static inline struct timespec get_monotonic_coarse(void)
{
	return get_monotonic_coarse64();
}
83 84 85 86 87

static inline void getboottime(struct timespec *ts)
{
	return getboottime64(ts);
}
88
#else
89 90 91 92 93 94 95 96 97 98 99
/**
 * Deprecated. Use do_settimeofday64().
 */
static inline int do_settimeofday(const struct timespec *ts)
{
	struct timespec64 ts64;

	ts64 = timespec_to_timespec64(*ts);
	return do_settimeofday64(&ts64);
}

100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
static inline int __getnstimeofday(struct timespec *ts)
{
	struct timespec64 ts64;
	int ret = __getnstimeofday64(&ts64);

	*ts = timespec64_to_timespec(ts64);
	return ret;
}

static inline void getnstimeofday(struct timespec *ts)
{
	struct timespec64 ts64;

	getnstimeofday64(&ts64);
	*ts = timespec64_to_timespec(ts64);
}

static inline void ktime_get_ts(struct timespec *ts)
{
	struct timespec64 ts64;

	ktime_get_ts64(&ts64);
	*ts = timespec64_to_timespec(ts64);
}

static inline void ktime_get_real_ts(struct timespec *ts)
{
	struct timespec64 ts64;

	getnstimeofday64(&ts64);
	*ts = timespec64_to_timespec(ts64);
}
132 133 134 135 136 137 138 139

static inline void getrawmonotonic(struct timespec *ts)
{
	struct timespec64 ts64;

	getrawmonotonic64(&ts64);
	*ts = timespec64_to_timespec(ts64);
}
140 141 142 143 144

static inline struct timespec get_monotonic_coarse(void)
{
	return timespec64_to_timespec(get_monotonic_coarse64());
}
145

146 147 148 149 150 151 152 153
static inline void getboottime(struct timespec *ts)
{
	struct timespec64 ts64;

	getboottime64(&ts64);
	*ts = timespec64_to_timespec(ts64);
}
#endif
154

155
#define ktime_get_real_ts64(ts)	getnstimeofday64(ts)
156 157 158 159

/*
 * ktime_t based interfaces
 */
160 161 162 163 164 165 166 167

enum tk_offsets {
	TK_OFFS_REAL,
	TK_OFFS_BOOT,
	TK_OFFS_TAI,
	TK_OFFS_MAX,
};

168
extern ktime_t ktime_get(void);
169
extern ktime_t ktime_get_with_offset(enum tk_offsets offs);
170
extern ktime_t ktime_mono_to_any(ktime_t tmono, enum tk_offsets offs);
171
extern ktime_t ktime_get_raw(void);
172
extern u32 ktime_get_resolution_ns(void);
173

174 175 176 177 178 179 180 181
/**
 * 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);
}

182 183 184 185 186 187 188 189 190 191 192
/**
 * 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);
}

193 194 195 196 197 198 199 200
/**
 * 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);
}

201 202 203 204 205 206 207 208
/**
 * 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);
}

209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
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());
}

static inline u64 ktime_get_boot_ns(void)
{
	return ktime_to_ns(ktime_get_boottime());
}

P
Peter Zijlstra 已提交
224 225 226 227 228
static inline u64 ktime_get_tai_ns(void)
{
	return ktime_to_ns(ktime_get_clocktai());
}

229 230 231 232 233
static inline u64 ktime_get_raw_ns(void)
{
	return ktime_to_ns(ktime_get_raw());
}

234
extern u64 ktime_get_mono_fast_ns(void);
P
Peter Zijlstra 已提交
235
extern u64 ktime_get_raw_fast_ns(void);
236

237 238 239 240 241 242 243 244
/*
 * Timespec interfaces utilizing the ktime based ones
 */
static inline void get_monotonic_boottime(struct timespec *ts)
{
	*ts = ktime_to_timespec(ktime_get_boottime());
}

245 246 247 248 249
static inline void get_monotonic_boottime64(struct timespec64 *ts)
{
	*ts = ktime_to_timespec64(ktime_get_boottime());
}

250 251 252 253 254
static inline void timekeeping_clocktai(struct timespec *ts)
{
	*ts = ktime_to_timespec(ktime_get_clocktai());
}

255 256 257
/*
 * RTC specific
 */
258 259 260
extern bool timekeeping_rtc_skipsuspend(void);
extern bool timekeeping_rtc_skipresume(void);

261 262
extern void timekeeping_inject_sleeptime64(struct timespec64 *delta);

263 264 265
/*
 * PPS accessor
 */
266 267
extern void ktime_get_raw_and_real_ts64(struct timespec64 *ts_raw,
				        struct timespec64 *ts_real);
268

269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
/*
 * 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
 */
struct system_time_snapshot {
	cycle_t		cycles;
	ktime_t		real;
	ktime_t		raw;
};

/*
 * Simultaneously snapshot realtime and monotonic raw clocks
 */
extern void ktime_get_snapshot(struct system_time_snapshot *systime_snapshot);

287 288 289 290 291 292
/*
 * Persistent clock related interfaces
 */
extern int persistent_clock_is_local;

extern void read_persistent_clock(struct timespec *ts);
293
extern void read_persistent_clock64(struct timespec64 *ts);
294
extern void read_boot_clock64(struct timespec64 *ts);
295
extern int update_persistent_clock(struct timespec now);
296
extern int update_persistent_clock64(struct timespec64 now);
297 298 299


#endif