blob: 32a895b114d88cb38dd401a5c37146aa4ae3a91f [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;
Thomas Gleixner09ac3692013-04-25 20:31:44 +000024struct module;
john stultz734efb42006-06-26 00:25:05 -070025
H. Peter Anvinae7bd112011-07-21 13:34:05 -070026#ifdef CONFIG_ARCH_CLOCKSOURCE_DATA
Andy Lutomirski433bd802011-07-13 09:24:13 -040027#include <asm/clocksource.h>
H. Peter Anvinae7bd112011-07-21 13:34:05 -070028#endif
Andy Lutomirski433bd802011-07-13 09:24:13 -040029
john stultz734efb42006-06-26 00:25:05 -070030/**
Patrick Ohlya038a352009-02-12 05:03:34 +000031 * struct cyclecounter - hardware abstraction for a free running counter
32 * Provides completely state-free accessors to the underlying hardware.
33 * Depending on which hardware it reads, the cycle counter may wrap
34 * around quickly. Locking rules (if necessary) have to be defined
35 * by the implementor and user of specific instances of this API.
36 *
37 * @read: returns the current cycle value
38 * @mask: bitmask for two's complement
39 * subtraction of non 64 bit counters,
40 * see CLOCKSOURCE_MASK() helper macro
41 * @mult: cycle to nanosecond multiplier
42 * @shift: cycle to nanosecond divisor (power of two)
43 */
44struct cyclecounter {
45 cycle_t (*read)(const struct cyclecounter *cc);
46 cycle_t mask;
47 u32 mult;
48 u32 shift;
49};
50
51/**
52 * struct timecounter - layer above a %struct cyclecounter which counts nanoseconds
53 * Contains the state needed by timecounter_read() to detect
54 * cycle counter wrap around. Initialize with
55 * timecounter_init(). Also used to convert cycle counts into the
56 * corresponding nanosecond counts with timecounter_cyc2time(). Users
57 * of this code are responsible for initializing the underlying
58 * cycle counter hardware, locking issues and reading the time
59 * more often than the cycle counter wraps around. The nanosecond
60 * counter will only wrap around after ~585 years.
61 *
62 * @cc: the cycle counter used by this instance
63 * @cycle_last: most recent cycle counter value seen by
64 * timecounter_read()
65 * @nsec: continuously increasing count
66 */
67struct timecounter {
68 const struct cyclecounter *cc;
69 cycle_t cycle_last;
70 u64 nsec;
71};
72
73/**
74 * cyclecounter_cyc2ns - converts cycle counter cycles to nanoseconds
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +090075 * @cc: Pointer to cycle counter.
Patrick Ohlya038a352009-02-12 05:03:34 +000076 * @cycles: Cycles
77 *
78 * XXX - This could use some mult_lxl_ll() asm optimization. Same code
79 * as in cyc2ns, but with unsigned result.
80 */
81static inline u64 cyclecounter_cyc2ns(const struct cyclecounter *cc,
82 cycle_t cycles)
83{
84 u64 ret = (u64)cycles;
85 ret = (ret * cc->mult) >> cc->shift;
86 return ret;
87}
88
89/**
90 * timecounter_init - initialize a time counter
91 * @tc: Pointer to time counter which is to be initialized/reset
92 * @cc: A cycle counter, ready to be used.
93 * @start_tstamp: Arbitrary initial time stamp.
94 *
95 * After this call the current cycle register (roughly) corresponds to
96 * the initial time stamp. Every call to timecounter_read() increments
97 * the time stamp counter by the number of elapsed nanoseconds.
98 */
99extern void timecounter_init(struct timecounter *tc,
100 const struct cyclecounter *cc,
101 u64 start_tstamp);
102
103/**
104 * timecounter_read - return nanoseconds elapsed since timecounter_init()
105 * plus the initial time stamp
106 * @tc: Pointer to time counter.
107 *
108 * In other words, keeps track of time since the same epoch as
109 * the function which generated the initial time stamp.
110 */
111extern u64 timecounter_read(struct timecounter *tc);
112
113/**
114 * timecounter_cyc2time - convert a cycle counter to same
115 * time base as values returned by
116 * timecounter_read()
117 * @tc: Pointer to time counter.
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900118 * @cycle_tstamp: a value returned by tc->cc->read()
Patrick Ohlya038a352009-02-12 05:03:34 +0000119 *
120 * Cycle counts that are converted correctly as long as they
121 * fall into the interval [-1/2 max cycle count, +1/2 max cycle count],
122 * with "max cycle count" == cs->mask+1.
123 *
124 * This allows conversion of cycle counter values which were generated
125 * in the past.
126 */
127extern u64 timecounter_cyc2time(struct timecounter *tc,
128 cycle_t cycle_tstamp);
129
130/**
john stultz734efb42006-06-26 00:25:05 -0700131 * struct clocksource - hardware abstraction for a free running counter
132 * Provides mostly state-free accessors to the underlying hardware.
Patrick Ohlya038a352009-02-12 05:03:34 +0000133 * This is the structure used for system time.
john stultz734efb42006-06-26 00:25:05 -0700134 *
135 * @name: ptr to clocksource name
136 * @list: list head for registration
137 * @rating: rating value for selection (higher is better)
138 * To avoid rating inflation the following
139 * list should give you a guide as to how
140 * to assign your clocksource a rating
141 * 1-99: Unfit for real use
142 * Only available for bootup and testing purposes.
143 * 100-199: Base level usability.
144 * Functional for real use, but not desired.
145 * 200-299: Good.
146 * A correct and usable clocksource.
147 * 300-399: Desired.
148 * A reasonably fast and accurate clocksource.
149 * 400-499: Perfect
150 * The ideal clocksource. A must-use where
151 * available.
Magnus Damm8e196082009-04-21 12:24:00 -0700152 * @read: returns a cycle value, passes clocksource as argument
Magnus Damm4614e6a2009-04-21 12:24:02 -0700153 * @enable: optional function to enable the clocksource
154 * @disable: optional function to disable the clocksource
john stultz734efb42006-06-26 00:25:05 -0700155 * @mask: bitmask for two's complement
156 * subtraction of non 64 bit counters
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200157 * @mult: cycle to nanosecond multiplier
john stultz734efb42006-06-26 00:25:05 -0700158 * @shift: cycle to nanosecond divisor (power of two)
Jon Hunter98962462009-08-18 12:45:10 -0500159 * @max_idle_ns: max idle time permitted by the clocksource (nsecs)
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900160 * @maxadj: maximum adjustment value to mult (~11%)
Thomas Gleixner73b08d22007-02-16 01:27:36 -0800161 * @flags: flags describing special properties
Andy Lutomirski433bd802011-07-13 09:24:13 -0400162 * @archdata: arch-specific data
Magnus Dammc54a42b2010-02-02 14:41:41 -0800163 * @suspend: suspend function for the clocksource, if necessary
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700164 * @resume: resume function for the clocksource, if necessary
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900165 * @cycle_last: most recent cycle counter value seen by ::read()
Thomas Gleixner09ac3692013-04-25 20:31:44 +0000166 * @owner: module reference, must be set by clocksource in modules
john stultz734efb42006-06-26 00:25:05 -0700167 */
168struct clocksource {
Eric Dumazet329c8d82007-05-08 00:27:57 -0700169 /*
Thomas Gleixner369db4c2011-05-18 21:33:40 +0000170 * Hotpath data, fits in a single cache line when the
171 * clocksource itself is cacheline aligned.
Eric Dumazet329c8d82007-05-08 00:27:57 -0700172 */
Magnus Damm8e196082009-04-21 12:24:00 -0700173 cycle_t (*read)(struct clocksource *cs);
Thomas Gleixner369db4c2011-05-18 21:33:40 +0000174 cycle_t cycle_last;
john stultz734efb42006-06-26 00:25:05 -0700175 cycle_t mask;
176 u32 mult;
177 u32 shift;
Jon Hunter98962462009-08-18 12:45:10 -0500178 u64 max_idle_ns;
John Stultzd65670a2011-10-31 17:06:35 -0400179 u32 maxadj;
H. Peter Anvinae7bd112011-07-21 13:34:05 -0700180#ifdef CONFIG_ARCH_CLOCKSOURCE_DATA
Andy Lutomirski433bd802011-07-13 09:24:13 -0400181 struct arch_clocksource_data archdata;
Tony Luck0aa366f2007-07-20 11:22:30 -0700182#endif
Andy Lutomirski433bd802011-07-13 09:24:13 -0400183
Thomas Gleixner369db4c2011-05-18 21:33:40 +0000184 const char *name;
185 struct list_head list;
186 int rating;
Thomas Gleixner369db4c2011-05-18 21:33:40 +0000187 int (*enable)(struct clocksource *cs);
188 void (*disable)(struct clocksource *cs);
189 unsigned long flags;
190 void (*suspend)(struct clocksource *cs);
191 void (*resume)(struct clocksource *cs);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800192
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900193 /* private: */
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800194#ifdef CONFIG_CLOCKSOURCE_WATCHDOG
195 /* Watchdog related data, used by the framework */
196 struct list_head wd_list;
Thomas Gleixnerb5199512011-06-16 16:22:08 +0200197 cycle_t cs_last;
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800198 cycle_t wd_last;
199#endif
Thomas Gleixner09ac3692013-04-25 20:31:44 +0000200 struct module *owner;
Thomas Gleixner369db4c2011-05-18 21:33:40 +0000201} ____cacheline_aligned;
john stultz734efb42006-06-26 00:25:05 -0700202
Thomas Gleixner73b08d22007-02-16 01:27:36 -0800203/*
204 * Clock source flags bits::
205 */
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800206#define CLOCK_SOURCE_IS_CONTINUOUS 0x01
207#define CLOCK_SOURCE_MUST_VERIFY 0x02
208
209#define CLOCK_SOURCE_WATCHDOG 0x10
210#define CLOCK_SOURCE_VALID_FOR_HRES 0x20
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200211#define CLOCK_SOURCE_UNSTABLE 0x40
Feng Tang5caf4632013-03-12 11:56:46 +0800212#define CLOCK_SOURCE_SUSPEND_NONSTOP 0x80
Thomas Gleixner73b08d22007-02-16 01:27:36 -0800213
Jim Cromie7f9f3032006-06-26 00:25:15 -0700214/* simplify initialization of mask field */
Atsushi Nemoto1d76c262008-01-30 13:30:01 +0100215#define CLOCKSOURCE_MASK(bits) (cycle_t)((bits) < 64 ? ((1ULL<<(bits))-1) : -1)
john stultz734efb42006-06-26 00:25:05 -0700216
217/**
218 * clocksource_khz2mult - calculates mult from khz and shift
219 * @khz: Clocksource frequency in KHz
220 * @shift_constant: Clocksource shift factor
221 *
222 * Helper functions that converts a khz counter frequency to a timsource
223 * multiplier, given the clocksource shift value
224 */
225static inline u32 clocksource_khz2mult(u32 khz, u32 shift_constant)
226{
227 /* khz = cyc/(Million ns)
228 * mult/2^shift = ns/cyc
229 * mult = ns/cyc * 2^shift
230 * mult = 1Million/khz * 2^shift
231 * mult = 1000000 * 2^shift / khz
232 * mult = (1000000<<shift) / khz
233 */
234 u64 tmp = ((u64)1000000) << shift_constant;
235
236 tmp += khz/2; /* round for do_div */
237 do_div(tmp, khz);
238
239 return (u32)tmp;
240}
241
242/**
243 * clocksource_hz2mult - calculates mult from hz and shift
244 * @hz: Clocksource frequency in Hz
245 * @shift_constant: Clocksource shift factor
246 *
247 * Helper functions that converts a hz counter
248 * frequency to a timsource multiplier, given the
249 * clocksource shift value
250 */
251static inline u32 clocksource_hz2mult(u32 hz, u32 shift_constant)
252{
253 /* hz = cyc/(Billion ns)
254 * mult/2^shift = ns/cyc
255 * mult = ns/cyc * 2^shift
256 * mult = 1Billion/hz * 2^shift
257 * mult = 1000000000 * 2^shift / hz
258 * mult = (1000000000<<shift) / hz
259 */
260 u64 tmp = ((u64)1000000000) << shift_constant;
261
262 tmp += hz/2; /* round for do_div */
263 do_div(tmp, hz);
264
265 return (u32)tmp;
266}
267
268/**
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200269 * clocksource_cyc2ns - converts clocksource cycles to nanoseconds
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900270 * @cycles: cycles
271 * @mult: cycle to nanosecond multiplier
272 * @shift: cycle to nanosecond divisor (power of two)
john stultz734efb42006-06-26 00:25:05 -0700273 *
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200274 * Converts cycles to nanoseconds, using the given mult and shift.
john stultz734efb42006-06-26 00:25:05 -0700275 *
276 * XXX - This could use some mult_lxl_ll() asm optimization
277 */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200278static inline s64 clocksource_cyc2ns(cycle_t cycles, u32 mult, u32 shift)
john stultz734efb42006-06-26 00:25:05 -0700279{
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200280 return ((u64) cycles * mult) >> shift;
john stultz5eb6d202006-06-26 00:25:07 -0700281}
282
283
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800284extern int clocksource_register(struct clocksource*);
Thomas Gleixner4713e22c2008-01-30 13:30:02 +0100285extern void clocksource_unregister(struct clocksource*);
Jason Wessel7c3078b2008-02-15 14:55:54 -0600286extern void clocksource_touch_watchdog(void);
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800287extern struct clocksource* clocksource_get_next(void);
288extern void clocksource_change_rating(struct clocksource *cs, int rating);
Magnus Dammc54a42b2010-02-02 14:41:41 -0800289extern void clocksource_suspend(void);
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700290extern void clocksource_resume(void);
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200291extern struct clocksource * __init __weak clocksource_default_clock(void);
Thomas Gleixner7285dd72009-08-28 20:25:24 +0200292extern void clocksource_mark_unstable(struct clocksource *cs);
john stultz734efb42006-06-26 00:25:05 -0700293
Thomas Gleixner7d2f9442009-11-11 14:05:29 +0000294extern void
295clocks_calc_mult_shift(u32 *mult, u32 *shift, u32 from, u32 to, u32 minsec);
296
John Stultzd7e81c22010-05-07 18:07:38 -0700297/*
298 * Don't call __clocksource_register_scale directly, use
299 * clocksource_register_hz/khz
300 */
301extern int
302__clocksource_register_scale(struct clocksource *cs, u32 scale, u32 freq);
John Stultz852db462010-07-13 17:56:28 -0700303extern void
304__clocksource_updatefreq_scale(struct clocksource *cs, u32 scale, u32 freq);
John Stultzd7e81c22010-05-07 18:07:38 -0700305
306static inline int clocksource_register_hz(struct clocksource *cs, u32 hz)
307{
308 return __clocksource_register_scale(cs, 1, hz);
309}
310
311static inline int clocksource_register_khz(struct clocksource *cs, u32 khz)
312{
313 return __clocksource_register_scale(cs, 1000, khz);
314}
315
John Stultz852db462010-07-13 17:56:28 -0700316static inline void __clocksource_updatefreq_hz(struct clocksource *cs, u32 hz)
317{
318 __clocksource_updatefreq_scale(cs, 1, hz);
319}
320
321static inline void __clocksource_updatefreq_khz(struct clocksource *cs, u32 khz)
322{
323 __clocksource_updatefreq_scale(cs, 1000, khz);
324}
John Stultzd7e81c22010-05-07 18:07:38 -0700325
john stultzacc9a9d2007-02-16 01:28:17 -0800326
Thomas Gleixnerba919d12013-04-25 20:31:44 +0000327extern int timekeeping_notify(struct clocksource *clock);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200328
Russell King442c8172011-05-08 14:06:52 +0100329extern cycle_t clocksource_mmio_readl_up(struct clocksource *);
330extern cycle_t clocksource_mmio_readl_down(struct clocksource *);
331extern cycle_t clocksource_mmio_readw_up(struct clocksource *);
332extern cycle_t clocksource_mmio_readw_down(struct clocksource *);
333
334extern int clocksource_mmio_init(void __iomem *, const char *,
335 unsigned long, int, unsigned, cycle_t (*)(struct clocksource *));
336
Russell King8c414ff2011-05-08 18:50:20 +0100337extern int clocksource_i8253_init(void);
338
Arnd Bergmann3d5a9652013-03-19 15:38:50 +0100339struct device_node;
340typedef void(*clocksource_of_init_fn)(struct device_node *);
Stephen Warrenae278a92012-11-19 16:41:20 -0700341#ifdef CONFIG_CLKSRC_OF
342extern void clocksource_of_init(void);
343
344#define CLOCKSOURCE_OF_DECLARE(name, compat, fn) \
345 static const struct of_device_id __clksrc_of_table_##name \
346 __used __section(__clksrc_of_table) \
Arnd Bergmann3d5a9652013-03-19 15:38:50 +0100347 = { .compatible = compat, \
348 .data = (fn == (clocksource_of_init_fn)NULL) ? fn : fn }
Stephen Warrene1d7ef12013-01-30 10:49:30 -0700349#else
Rob Herringe0c25362013-03-10 21:52:53 -0500350static inline void clocksource_of_init(void) {}
Arnd Bergmann3d5a9652013-03-19 15:38:50 +0100351#define CLOCKSOURCE_OF_DECLARE(name, compat, fn) \
352 static const struct of_device_id __clksrc_of_table_##name \
353 __attribute__((unused)) \
354 = { .compatible = compat, \
355 .data = (fn == (clocksource_of_init_fn)NULL) ? fn : fn }
Stephen Warrenae278a92012-11-19 16:41:20 -0700356#endif
357
john stultz734efb42006-06-26 00:25:05 -0700358#endif /* _LINUX_CLOCKSOURCE_H */