blob: 0fb83c224471e34ed96fa16706427f7df78da0db [file] [log] [blame]
john stultz734efb42006-06-26 00:25:05 -07001/* linux/include/linux/clocksource.h
2 *
3 * This file contains the structure definitions for clocksources.
4 *
5 * If you are not a clocksource, or timekeeping code, you should
6 * not be including this file!
7 */
8#ifndef _LINUX_CLOCKSOURCE_H
9#define _LINUX_CLOCKSOURCE_H
10
11#include <linux/types.h>
12#include <linux/timex.h>
13#include <linux/time.h>
14#include <linux/list.h>
Eric Dumazet329c8d82007-05-08 00:27:57 -070015#include <linux/cache.h>
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -080016#include <linux/timer.h>
Martin Schwidefskyf1b82742009-08-14 15:47:21 +020017#include <linux/init.h>
john stultz734efb42006-06-26 00:25:05 -070018#include <asm/div64.h>
19#include <asm/io.h>
20
21/* clocksource cycle base type */
22typedef u64 cycle_t;
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -080023struct clocksource;
john stultz734efb42006-06-26 00:25:05 -070024
Andy Lutomirski433bd802011-07-13 09:24:13 -040025#include <asm/clocksource.h>
26
john stultz734efb42006-06-26 00:25:05 -070027/**
Patrick Ohlya038a352009-02-12 05:03:34 +000028 * struct cyclecounter - hardware abstraction for a free running counter
29 * Provides completely state-free accessors to the underlying hardware.
30 * Depending on which hardware it reads, the cycle counter may wrap
31 * around quickly. Locking rules (if necessary) have to be defined
32 * by the implementor and user of specific instances of this API.
33 *
34 * @read: returns the current cycle value
35 * @mask: bitmask for two's complement
36 * subtraction of non 64 bit counters,
37 * see CLOCKSOURCE_MASK() helper macro
38 * @mult: cycle to nanosecond multiplier
39 * @shift: cycle to nanosecond divisor (power of two)
40 */
41struct cyclecounter {
42 cycle_t (*read)(const struct cyclecounter *cc);
43 cycle_t mask;
44 u32 mult;
45 u32 shift;
46};
47
48/**
49 * struct timecounter - layer above a %struct cyclecounter which counts nanoseconds
50 * Contains the state needed by timecounter_read() to detect
51 * cycle counter wrap around. Initialize with
52 * timecounter_init(). Also used to convert cycle counts into the
53 * corresponding nanosecond counts with timecounter_cyc2time(). Users
54 * of this code are responsible for initializing the underlying
55 * cycle counter hardware, locking issues and reading the time
56 * more often than the cycle counter wraps around. The nanosecond
57 * counter will only wrap around after ~585 years.
58 *
59 * @cc: the cycle counter used by this instance
60 * @cycle_last: most recent cycle counter value seen by
61 * timecounter_read()
62 * @nsec: continuously increasing count
63 */
64struct timecounter {
65 const struct cyclecounter *cc;
66 cycle_t cycle_last;
67 u64 nsec;
68};
69
70/**
71 * cyclecounter_cyc2ns - converts cycle counter cycles to nanoseconds
72 * @tc: Pointer to cycle counter.
73 * @cycles: Cycles
74 *
75 * XXX - This could use some mult_lxl_ll() asm optimization. Same code
76 * as in cyc2ns, but with unsigned result.
77 */
78static inline u64 cyclecounter_cyc2ns(const struct cyclecounter *cc,
79 cycle_t cycles)
80{
81 u64 ret = (u64)cycles;
82 ret = (ret * cc->mult) >> cc->shift;
83 return ret;
84}
85
86/**
87 * timecounter_init - initialize a time counter
88 * @tc: Pointer to time counter which is to be initialized/reset
89 * @cc: A cycle counter, ready to be used.
90 * @start_tstamp: Arbitrary initial time stamp.
91 *
92 * After this call the current cycle register (roughly) corresponds to
93 * the initial time stamp. Every call to timecounter_read() increments
94 * the time stamp counter by the number of elapsed nanoseconds.
95 */
96extern void timecounter_init(struct timecounter *tc,
97 const struct cyclecounter *cc,
98 u64 start_tstamp);
99
100/**
101 * timecounter_read - return nanoseconds elapsed since timecounter_init()
102 * plus the initial time stamp
103 * @tc: Pointer to time counter.
104 *
105 * In other words, keeps track of time since the same epoch as
106 * the function which generated the initial time stamp.
107 */
108extern u64 timecounter_read(struct timecounter *tc);
109
110/**
111 * timecounter_cyc2time - convert a cycle counter to same
112 * time base as values returned by
113 * timecounter_read()
114 * @tc: Pointer to time counter.
115 * @cycle: a value returned by tc->cc->read()
116 *
117 * Cycle counts that are converted correctly as long as they
118 * fall into the interval [-1/2 max cycle count, +1/2 max cycle count],
119 * with "max cycle count" == cs->mask+1.
120 *
121 * This allows conversion of cycle counter values which were generated
122 * in the past.
123 */
124extern u64 timecounter_cyc2time(struct timecounter *tc,
125 cycle_t cycle_tstamp);
126
127/**
john stultz734efb42006-06-26 00:25:05 -0700128 * struct clocksource - hardware abstraction for a free running counter
129 * Provides mostly state-free accessors to the underlying hardware.
Patrick Ohlya038a352009-02-12 05:03:34 +0000130 * This is the structure used for system time.
john stultz734efb42006-06-26 00:25:05 -0700131 *
132 * @name: ptr to clocksource name
133 * @list: list head for registration
134 * @rating: rating value for selection (higher is better)
135 * To avoid rating inflation the following
136 * list should give you a guide as to how
137 * to assign your clocksource a rating
138 * 1-99: Unfit for real use
139 * Only available for bootup and testing purposes.
140 * 100-199: Base level usability.
141 * Functional for real use, but not desired.
142 * 200-299: Good.
143 * A correct and usable clocksource.
144 * 300-399: Desired.
145 * A reasonably fast and accurate clocksource.
146 * 400-499: Perfect
147 * The ideal clocksource. A must-use where
148 * available.
Magnus Damm8e196082009-04-21 12:24:00 -0700149 * @read: returns a cycle value, passes clocksource as argument
Magnus Damm4614e6a2009-04-21 12:24:02 -0700150 * @enable: optional function to enable the clocksource
151 * @disable: optional function to disable the clocksource
john stultz734efb42006-06-26 00:25:05 -0700152 * @mask: bitmask for two's complement
153 * subtraction of non 64 bit counters
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200154 * @mult: cycle to nanosecond multiplier
john stultz734efb42006-06-26 00:25:05 -0700155 * @shift: cycle to nanosecond divisor (power of two)
Jon Hunter98962462009-08-18 12:45:10 -0500156 * @max_idle_ns: max idle time permitted by the clocksource (nsecs)
Thomas Gleixner73b08d22007-02-16 01:27:36 -0800157 * @flags: flags describing special properties
Andy Lutomirski433bd802011-07-13 09:24:13 -0400158 * @archdata: arch-specific data
Magnus Dammc54a42b2010-02-02 14:41:41 -0800159 * @suspend: suspend function for the clocksource, if necessary
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700160 * @resume: resume function for the clocksource, if necessary
john stultz734efb42006-06-26 00:25:05 -0700161 */
162struct clocksource {
Eric Dumazet329c8d82007-05-08 00:27:57 -0700163 /*
Thomas Gleixner369db4c2011-05-18 21:33:40 +0000164 * Hotpath data, fits in a single cache line when the
165 * clocksource itself is cacheline aligned.
Eric Dumazet329c8d82007-05-08 00:27:57 -0700166 */
Magnus Damm8e196082009-04-21 12:24:00 -0700167 cycle_t (*read)(struct clocksource *cs);
Thomas Gleixner369db4c2011-05-18 21:33:40 +0000168 cycle_t cycle_last;
john stultz734efb42006-06-26 00:25:05 -0700169 cycle_t mask;
170 u32 mult;
171 u32 shift;
Jon Hunter98962462009-08-18 12:45:10 -0500172 u64 max_idle_ns;
Thomas Gleixner369db4c2011-05-18 21:33:40 +0000173
Tony Luck0aa366f2007-07-20 11:22:30 -0700174#ifdef CONFIG_IA64
175 void *fsys_mmio; /* used by fsyscall asm code */
176#define CLKSRC_FSYS_MMIO_SET(mmio, addr) ((mmio) = (addr))
177#else
178#define CLKSRC_FSYS_MMIO_SET(mmio, addr) do { } while (0)
179#endif
Andy Lutomirski433bd802011-07-13 09:24:13 -0400180
181#ifdef __ARCH_HAS_CLOCKSOURCE_DATA
182 struct arch_clocksource_data archdata;
183#endif
184
Thomas Gleixner369db4c2011-05-18 21:33:40 +0000185 const char *name;
186 struct list_head list;
187 int rating;
Thomas Gleixner369db4c2011-05-18 21:33:40 +0000188 int (*enable)(struct clocksource *cs);
189 void (*disable)(struct clocksource *cs);
190 unsigned long flags;
191 void (*suspend)(struct clocksource *cs);
192 void (*resume)(struct clocksource *cs);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800193
194#ifdef CONFIG_CLOCKSOURCE_WATCHDOG
195 /* Watchdog related data, used by the framework */
196 struct list_head wd_list;
197 cycle_t wd_last;
198#endif
Thomas Gleixner369db4c2011-05-18 21:33:40 +0000199} ____cacheline_aligned;
john stultz734efb42006-06-26 00:25:05 -0700200
Thomas Gleixner73b08d22007-02-16 01:27:36 -0800201/*
202 * Clock source flags bits::
203 */
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800204#define CLOCK_SOURCE_IS_CONTINUOUS 0x01
205#define CLOCK_SOURCE_MUST_VERIFY 0x02
206
207#define CLOCK_SOURCE_WATCHDOG 0x10
208#define CLOCK_SOURCE_VALID_FOR_HRES 0x20
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200209#define CLOCK_SOURCE_UNSTABLE 0x40
Thomas Gleixner73b08d22007-02-16 01:27:36 -0800210
Jim Cromie7f9f3032006-06-26 00:25:15 -0700211/* simplify initialization of mask field */
Atsushi Nemoto1d76c262008-01-30 13:30:01 +0100212#define CLOCKSOURCE_MASK(bits) (cycle_t)((bits) < 64 ? ((1ULL<<(bits))-1) : -1)
john stultz734efb42006-06-26 00:25:05 -0700213
214/**
215 * clocksource_khz2mult - calculates mult from khz and shift
216 * @khz: Clocksource frequency in KHz
217 * @shift_constant: Clocksource shift factor
218 *
219 * Helper functions that converts a khz counter frequency to a timsource
220 * multiplier, given the clocksource shift value
221 */
222static inline u32 clocksource_khz2mult(u32 khz, u32 shift_constant)
223{
224 /* khz = cyc/(Million ns)
225 * mult/2^shift = ns/cyc
226 * mult = ns/cyc * 2^shift
227 * mult = 1Million/khz * 2^shift
228 * mult = 1000000 * 2^shift / khz
229 * mult = (1000000<<shift) / khz
230 */
231 u64 tmp = ((u64)1000000) << shift_constant;
232
233 tmp += khz/2; /* round for do_div */
234 do_div(tmp, khz);
235
236 return (u32)tmp;
237}
238
239/**
240 * clocksource_hz2mult - calculates mult from hz and shift
241 * @hz: Clocksource frequency in Hz
242 * @shift_constant: Clocksource shift factor
243 *
244 * Helper functions that converts a hz counter
245 * frequency to a timsource multiplier, given the
246 * clocksource shift value
247 */
248static inline u32 clocksource_hz2mult(u32 hz, u32 shift_constant)
249{
250 /* hz = cyc/(Billion ns)
251 * mult/2^shift = ns/cyc
252 * mult = ns/cyc * 2^shift
253 * mult = 1Billion/hz * 2^shift
254 * mult = 1000000000 * 2^shift / hz
255 * mult = (1000000000<<shift) / hz
256 */
257 u64 tmp = ((u64)1000000000) << shift_constant;
258
259 tmp += hz/2; /* round for do_div */
260 do_div(tmp, hz);
261
262 return (u32)tmp;
263}
264
265/**
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200266 * clocksource_cyc2ns - converts clocksource cycles to nanoseconds
john stultz734efb42006-06-26 00:25:05 -0700267 *
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200268 * Converts cycles to nanoseconds, using the given mult and shift.
john stultz734efb42006-06-26 00:25:05 -0700269 *
270 * XXX - This could use some mult_lxl_ll() asm optimization
271 */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200272static inline s64 clocksource_cyc2ns(cycle_t cycles, u32 mult, u32 shift)
john stultz734efb42006-06-26 00:25:05 -0700273{
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200274 return ((u64) cycles * mult) >> shift;
john stultz5eb6d202006-06-26 00:25:07 -0700275}
276
277
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800278extern int clocksource_register(struct clocksource*);
Thomas Gleixner4713e22c2008-01-30 13:30:02 +0100279extern void clocksource_unregister(struct clocksource*);
Jason Wessel7c3078b2008-02-15 14:55:54 -0600280extern void clocksource_touch_watchdog(void);
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800281extern struct clocksource* clocksource_get_next(void);
282extern void clocksource_change_rating(struct clocksource *cs, int rating);
Magnus Dammc54a42b2010-02-02 14:41:41 -0800283extern void clocksource_suspend(void);
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700284extern void clocksource_resume(void);
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200285extern struct clocksource * __init __weak clocksource_default_clock(void);
Thomas Gleixner7285dd72009-08-28 20:25:24 +0200286extern void clocksource_mark_unstable(struct clocksource *cs);
john stultz734efb42006-06-26 00:25:05 -0700287
Thomas Gleixner7d2f9442009-11-11 14:05:29 +0000288extern void
289clocks_calc_mult_shift(u32 *mult, u32 *shift, u32 from, u32 to, u32 minsec);
290
John Stultzd7e81c22010-05-07 18:07:38 -0700291/*
292 * Don't call __clocksource_register_scale directly, use
293 * clocksource_register_hz/khz
294 */
295extern int
296__clocksource_register_scale(struct clocksource *cs, u32 scale, u32 freq);
John Stultz852db462010-07-13 17:56:28 -0700297extern void
298__clocksource_updatefreq_scale(struct clocksource *cs, u32 scale, u32 freq);
John Stultzd7e81c22010-05-07 18:07:38 -0700299
300static inline int clocksource_register_hz(struct clocksource *cs, u32 hz)
301{
302 return __clocksource_register_scale(cs, 1, hz);
303}
304
305static inline int clocksource_register_khz(struct clocksource *cs, u32 khz)
306{
307 return __clocksource_register_scale(cs, 1000, khz);
308}
309
John Stultz852db462010-07-13 17:56:28 -0700310static inline void __clocksource_updatefreq_hz(struct clocksource *cs, u32 hz)
311{
312 __clocksource_updatefreq_scale(cs, 1, hz);
313}
314
315static inline void __clocksource_updatefreq_khz(struct clocksource *cs, u32 khz)
316{
317 __clocksource_updatefreq_scale(cs, 1000, khz);
318}
John Stultzd7e81c22010-05-07 18:07:38 -0700319
Thomas Gleixner7d2f9442009-11-11 14:05:29 +0000320static inline void
321clocksource_calc_mult_shift(struct clocksource *cs, u32 freq, u32 minsec)
322{
323 return clocks_calc_mult_shift(&cs->mult, &cs->shift, freq,
324 NSEC_PER_SEC, minsec);
325}
326
john stultzacc9a9d2007-02-16 01:28:17 -0800327#ifdef CONFIG_GENERIC_TIME_VSYSCALL
Lin Ming0696b712009-11-17 13:49:50 +0800328extern void
John Stultz76158562010-07-13 17:56:23 -0700329update_vsyscall(struct timespec *ts, struct timespec *wtm,
330 struct clocksource *c, u32 mult);
Tony Breeds2c622142007-10-18 03:04:57 -0700331extern void update_vsyscall_tz(void);
john stultzacc9a9d2007-02-16 01:28:17 -0800332#else
Lin Ming0696b712009-11-17 13:49:50 +0800333static inline void
John Stultz76158562010-07-13 17:56:23 -0700334update_vsyscall(struct timespec *ts, struct timespec *wtm,
335 struct clocksource *c, u32 mult)
john stultzacc9a9d2007-02-16 01:28:17 -0800336{
337}
Tony Breeds2c622142007-10-18 03:04:57 -0700338
339static inline void update_vsyscall_tz(void)
340{
341}
john stultzacc9a9d2007-02-16 01:28:17 -0800342#endif
343
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200344extern void timekeeping_notify(struct clocksource *clock);
345
Russell King442c8172011-05-08 14:06:52 +0100346extern cycle_t clocksource_mmio_readl_up(struct clocksource *);
347extern cycle_t clocksource_mmio_readl_down(struct clocksource *);
348extern cycle_t clocksource_mmio_readw_up(struct clocksource *);
349extern cycle_t clocksource_mmio_readw_down(struct clocksource *);
350
351extern int clocksource_mmio_init(void __iomem *, const char *,
352 unsigned long, int, unsigned, cycle_t (*)(struct clocksource *));
353
Russell King8c414ff2011-05-08 18:50:20 +0100354extern int clocksource_i8253_init(void);
355
john stultz734efb42006-06-26 00:25:05 -0700356#endif /* _LINUX_CLOCKSOURCE_H */