1 /* SPDX-License-Identifier: GPL-2.0 */ 1 2 /* 3 * You SHOULD NOT be including this unless you 4 * handling code or timekeeping internal code! 5 */ 6 7 #ifndef _LINUX_TIMEKEEPER_INTERNAL_H 8 #define _LINUX_TIMEKEEPER_INTERNAL_H 9 10 #include <linux/clocksource.h> 11 #include <linux/jiffies.h> 12 #include <linux/time.h> 13 14 /** 15 * struct tk_read_base - base structure for ti 16 * @clock: Current clocksource used for t 17 * @mask: Bitmask for two's complement s 18 * @cycle_last: @clock cycle value at last upd 19 * @mult: (NTP adjusted) multiplier for 20 * @shift: Shift value for scaled math co 21 * @xtime_nsec: Shifted (fractional) nano seco 22 * @base: ktime_t (nanoseconds) base tim 23 * @base_real: Nanoseconds base value for clo 24 * 25 * This struct has size 56 byte on 64 bit. Tog 26 * occupies a single 64byte cache line. 27 * 28 * The struct is separate from struct timekeep 29 * for a fast NMI safe accessors. 30 * 31 * @base_real is for the fast NMI safe accesso 32 * realtime from any context. 33 */ 34 struct tk_read_base { 35 struct clocksource *clock; 36 u64 mask; 37 u64 cycle_last; 38 u32 mult; 39 u32 shift; 40 u64 xtime_nsec; 41 ktime_t base; 42 u64 base_real; 43 }; 44 45 /** 46 * struct timekeeper - Structure holding inter 47 * @tkr_mono: The readout base struc 48 * @tkr_raw: The readout base struc 49 * @xtime_sec: Current CLOCK_REALTIME 50 * @ktime_sec: Current CLOCK_MONOTONI 51 * @wall_to_monotonic: CLOCK_REALTIME to CLOC 52 * @offs_real: Offset clock monotonic 53 * @offs_boot: Offset clock monotonic 54 * @offs_tai: Offset clock monotonic 55 * @tai_offset: The current UTC to TAI 56 * @clock_was_set_seq: The sequence number of 57 * @cs_was_changed_seq: The sequence number of 58 * @next_leap_ktime: CLOCK_MONOTONIC time v 59 * @raw_sec: CLOCK_MONOTONIC_RAW t 60 * @monotonic_to_boot: CLOCK_MONOTONIC to CLO 61 * @cycle_interval: Number of clock cycles 62 * @xtime_interval: Number of clock shifte 63 * interval. 64 * @xtime_remainder: Shifted nano seconds l 65 * @cycle_interval 66 * @raw_interval: Shifted raw nano secon 67 * @ntp_error: Difference between acc 68 * shifted nano seconds. 69 * @ntp_error_shift: Shift conversion betwe 70 * ntp shifted nano secon 71 * @last_warning: Warning ratelimiter (D 72 * @underflow_seen: Underflow warning flag 73 * @overflow_seen: Overflow warning flag 74 * 75 * Note: For timespec(64) based interfaces wal 76 * we need to add to xtime (or xtime corrected 77 * to get to monotonic time. Monotonic is peg 78 * boot time, so wall_to_monotonic will be neg 79 * ALWAYS keep the tv_nsec part positive so we 80 * normalization. 81 * 82 * wall_to_monotonic is moved after resume fro 83 * monotonic time not to jump. We need to add 84 * wall_to_monotonic to get the real boot base 85 * 86 * wall_to_monotonic is no longer the boot tim 87 * used instead. 88 * 89 * @monotonic_to_boottime is a timespec64 repr 90 * accelerate the VDSO update for CLOCK_BOOTTI 91 */ 92 struct timekeeper { 93 struct tk_read_base tkr_mono; 94 struct tk_read_base tkr_raw; 95 u64 xtime_sec; 96 unsigned long ktime_sec; 97 struct timespec64 wall_to_monoto 98 ktime_t offs_real; 99 ktime_t offs_boot; 100 ktime_t offs_tai; 101 s32 tai_offset; 102 unsigned int clock_was_set_ 103 u8 cs_was_changed 104 ktime_t next_leap_ktim 105 u64 raw_sec; 106 struct timespec64 monotonic_to_b 107 108 /* The following members are for timek 109 u64 cycle_interval 110 u64 xtime_interval 111 s64 xtime_remainde 112 u64 raw_interval; 113 /* The ntp_tick_length() value current 114 * This cached copy ensures we consist 115 * length for an entire tick, as ntp_t 116 * mid-tick, and we don't want to appl 117 * the tick in progress. 118 */ 119 u64 ntp_tick; 120 /* Difference between accumulated time 121 * shifted nano seconds. */ 122 s64 ntp_error; 123 u32 ntp_error_shif 124 u32 ntp_err_mult; 125 /* Flag used to avoid updating NTP twi 126 u32 skip_second_ov 127 #ifdef CONFIG_DEBUG_TIMEKEEPING 128 long last_warning; 129 /* 130 * These simple flag variables are man 131 * without locks, which is racy, but t 132 * ok since we don't really care about 133 * super precise about how many events 134 * seen, just that a problem was obser 135 */ 136 int underflow_seen 137 int overflow_seen; 138 #endif 139 }; 140 141 #ifdef CONFIG_GENERIC_TIME_VSYSCALL 142 143 extern void update_vsyscall(struct timekeeper 144 extern void update_vsyscall_tz(void); 145 146 #else 147 148 static inline void update_vsyscall(struct time 149 { 150 } 151 static inline void update_vsyscall_tz(void) 152 { 153 } 154 #endif 155 156 #endif /* _LINUX_TIMEKEEPER_INTERNAL_H */ 157
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.