2013-05-22 07:32:14 +02:00
|
|
|
#ifndef _TIMEKEEPING_INTERNAL_H
|
|
|
|
#define _TIMEKEEPING_INTERNAL_H
|
|
|
|
/*
|
|
|
|
* timekeeping debug functions
|
|
|
|
*/
|
2014-07-16 23:05:10 +02:00
|
|
|
#include <linux/clocksource.h>
|
2013-05-22 07:32:14 +02:00
|
|
|
#include <linux/time.h>
|
|
|
|
|
|
|
|
#ifdef CONFIG_DEBUG_FS
|
2014-07-16 23:04:01 +02:00
|
|
|
extern void tk_debug_account_sleep_time(struct timespec64 *t);
|
2013-05-22 07:32:14 +02:00
|
|
|
#else
|
|
|
|
#define tk_debug_account_sleep_time(x)
|
|
|
|
#endif
|
|
|
|
|
2014-07-16 23:05:12 +02:00
|
|
|
#ifdef CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE
|
2016-12-21 20:32:01 +01:00
|
|
|
static inline u64 clocksource_delta(u64 now, u64 last, u64 mask)
|
2014-07-16 23:05:12 +02:00
|
|
|
{
|
2016-12-21 20:32:01 +01:00
|
|
|
u64 ret = (now - last) & mask;
|
2014-07-16 23:05:12 +02:00
|
|
|
|
2015-10-31 11:20:55 +01:00
|
|
|
/*
|
|
|
|
* Prevent time going backwards by checking the MSB of mask in
|
|
|
|
* the result. If set, return 0.
|
|
|
|
*/
|
|
|
|
return ret & ~(mask >> 1) ? 0 : ret;
|
2014-07-16 23:05:12 +02:00
|
|
|
}
|
|
|
|
#else
|
2016-12-21 20:32:01 +01:00
|
|
|
static inline u64 clocksource_delta(u64 now, u64 last, u64 mask)
|
2014-07-16 23:05:10 +02:00
|
|
|
{
|
|
|
|
return (now - last) & mask;
|
|
|
|
}
|
2014-07-16 23:05:12 +02:00
|
|
|
#endif
|
2014-07-16 23:05:10 +02:00
|
|
|
|
2015-12-13 05:24:18 +01:00
|
|
|
extern time64_t __ktime_get_real_seconds(void);
|
|
|
|
|
2013-05-22 07:32:14 +02:00
|
|
|
#endif /* _TIMEKEEPING_INTERNAL_H */
|