blob: a78cb1848e656d7042526752034b6d4f1b622de5 [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>
David Lechner02fad5e2016-03-09 18:16:54 -060018#include <linux/of.h>
john stultz734efb42006-06-26 00:25:05 -070019#include <asm/div64.h>
20#include <asm/io.h>
21
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -080022struct clocksource;
Thomas Gleixner09ac3692013-04-25 20:31:44 +000023struct module;
john stultz734efb42006-06-26 00:25:05 -070024
H. Peter Anvinae7bd112011-07-21 13:34:05 -070025#ifdef CONFIG_ARCH_CLOCKSOURCE_DATA
Andy Lutomirski433bd802011-07-13 09:24:13 -040026#include <asm/clocksource.h>
H. Peter Anvinae7bd112011-07-21 13:34:05 -070027#endif
Andy Lutomirski433bd802011-07-13 09:24:13 -040028
john stultz734efb42006-06-26 00:25:05 -070029/**
30 * struct clocksource - hardware abstraction for a free running counter
31 * Provides mostly state-free accessors to the underlying hardware.
Patrick Ohlya038a352009-02-12 05:03:34 +000032 * This is the structure used for system time.
john stultz734efb42006-06-26 00:25:05 -070033 *
34 * @name: ptr to clocksource name
35 * @list: list head for registration
36 * @rating: rating value for selection (higher is better)
37 * To avoid rating inflation the following
38 * list should give you a guide as to how
39 * to assign your clocksource a rating
40 * 1-99: Unfit for real use
41 * Only available for bootup and testing purposes.
42 * 100-199: Base level usability.
43 * Functional for real use, but not desired.
44 * 200-299: Good.
45 * A correct and usable clocksource.
46 * 300-399: Desired.
47 * A reasonably fast and accurate clocksource.
48 * 400-499: Perfect
49 * The ideal clocksource. A must-use where
50 * available.
Magnus Damm8e196082009-04-21 12:24:00 -070051 * @read: returns a cycle value, passes clocksource as argument
Magnus Damm4614e6a2009-04-21 12:24:02 -070052 * @enable: optional function to enable the clocksource
53 * @disable: optional function to disable the clocksource
john stultz734efb42006-06-26 00:25:05 -070054 * @mask: bitmask for two's complement
55 * subtraction of non 64 bit counters
Martin Schwidefsky0a544192009-08-14 15:47:28 +020056 * @mult: cycle to nanosecond multiplier
john stultz734efb42006-06-26 00:25:05 -070057 * @shift: cycle to nanosecond divisor (power of two)
Jon Hunter98962462009-08-18 12:45:10 -050058 * @max_idle_ns: max idle time permitted by the clocksource (nsecs)
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +090059 * @maxadj: maximum adjustment value to mult (~11%)
John Stultzfb82fe22015-03-11 21:16:31 -070060 * @max_cycles: maximum safe cycle value which won't overflow on multiplication
Thomas Gleixner73b08d22007-02-16 01:27:36 -080061 * @flags: flags describing special properties
Andy Lutomirski433bd802011-07-13 09:24:13 -040062 * @archdata: arch-specific data
Magnus Dammc54a42b2010-02-02 14:41:41 -080063 * @suspend: suspend function for the clocksource, if necessary
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -070064 * @resume: resume function for the clocksource, if necessary
Thomas Gleixner12907fb2016-12-15 11:44:28 +010065 * @mark_unstable: Optional function to inform the clocksource driver that
66 * the watchdog marked the clocksource unstable
Thomas Gleixner09ac3692013-04-25 20:31:44 +000067 * @owner: module reference, must be set by clocksource in modules
Thomas Gleixner09a99822015-11-19 11:43:09 +010068 *
69 * Note: This struct is not used in hotpathes of the timekeeping code
70 * because the timekeeper caches the hot path fields in its own data
71 * structure, so no line cache alignment is required,
72 *
73 * The pointer to the clocksource itself is handed to the read
74 * callback. If you need extra information there you can wrap struct
75 * clocksource into your own struct. Depending on the amount of
76 * information you need you should consider to cache line align that
77 * structure.
john stultz734efb42006-06-26 00:25:05 -070078 */
79struct clocksource {
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +010080 u64 (*read)(struct clocksource *cs);
81 u64 mask;
john stultz734efb42006-06-26 00:25:05 -070082 u32 mult;
83 u32 shift;
Jon Hunter98962462009-08-18 12:45:10 -050084 u64 max_idle_ns;
John Stultzd65670a2011-10-31 17:06:35 -040085 u32 maxadj;
H. Peter Anvinae7bd112011-07-21 13:34:05 -070086#ifdef CONFIG_ARCH_CLOCKSOURCE_DATA
Andy Lutomirski433bd802011-07-13 09:24:13 -040087 struct arch_clocksource_data archdata;
Tony Luck0aa366f2007-07-20 11:22:30 -070088#endif
John Stultzfb82fe22015-03-11 21:16:31 -070089 u64 max_cycles;
Thomas Gleixner369db4c2011-05-18 21:33:40 +000090 const char *name;
91 struct list_head list;
92 int rating;
Thomas Gleixner369db4c2011-05-18 21:33:40 +000093 int (*enable)(struct clocksource *cs);
94 void (*disable)(struct clocksource *cs);
95 unsigned long flags;
96 void (*suspend)(struct clocksource *cs);
97 void (*resume)(struct clocksource *cs);
Thomas Gleixner12907fb2016-12-15 11:44:28 +010098 void (*mark_unstable)(struct clocksource *cs);
Peter Zijlstrab421b222017-04-21 12:14:13 +020099 void (*tick_stable)(struct clocksource *cs);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800100
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900101 /* private: */
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800102#ifdef CONFIG_CLOCKSOURCE_WATCHDOG
103 /* Watchdog related data, used by the framework */
104 struct list_head wd_list;
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100105 u64 cs_last;
106 u64 wd_last;
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800107#endif
Thomas Gleixner09ac3692013-04-25 20:31:44 +0000108 struct module *owner;
Thomas Gleixner09a99822015-11-19 11:43:09 +0100109};
john stultz734efb42006-06-26 00:25:05 -0700110
Thomas Gleixner73b08d22007-02-16 01:27:36 -0800111/*
112 * Clock source flags bits::
113 */
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800114#define CLOCK_SOURCE_IS_CONTINUOUS 0x01
115#define CLOCK_SOURCE_MUST_VERIFY 0x02
116
117#define CLOCK_SOURCE_WATCHDOG 0x10
118#define CLOCK_SOURCE_VALID_FOR_HRES 0x20
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200119#define CLOCK_SOURCE_UNSTABLE 0x40
Feng Tang5caf4632013-03-12 11:56:46 +0800120#define CLOCK_SOURCE_SUSPEND_NONSTOP 0x80
Thomas Gleixner332962f2013-07-04 22:46:45 +0200121#define CLOCK_SOURCE_RESELECT 0x100
Thomas Gleixner73b08d22007-02-16 01:27:36 -0800122
Jim Cromie7f9f3032006-06-26 00:25:15 -0700123/* simplify initialization of mask field */
Matthias Kaehlcke0773cea2017-04-18 16:30:37 -0700124#define CLOCKSOURCE_MASK(bits) GENMASK_ULL((bits) - 1, 0)
john stultz734efb42006-06-26 00:25:05 -0700125
Alexander Kuleshov7aca0c02016-02-26 19:14:13 -0800126static inline u32 clocksource_freq2mult(u32 freq, u32 shift_constant, u64 from)
127{
128 /* freq = cyc/from
129 * mult/2^shift = ns/cyc
130 * mult = ns/cyc * 2^shift
131 * mult = from/freq * 2^shift
132 * mult = from * 2^shift / freq
133 * mult = (from<<shift) / freq
134 */
135 u64 tmp = ((u64)from) << shift_constant;
136
137 tmp += freq/2; /* round for do_div */
138 do_div(tmp, freq);
139
140 return (u32)tmp;
141}
142
john stultz734efb42006-06-26 00:25:05 -0700143/**
144 * clocksource_khz2mult - calculates mult from khz and shift
145 * @khz: Clocksource frequency in KHz
146 * @shift_constant: Clocksource shift factor
147 *
148 * Helper functions that converts a khz counter frequency to a timsource
149 * multiplier, given the clocksource shift value
150 */
151static inline u32 clocksource_khz2mult(u32 khz, u32 shift_constant)
152{
Alexander Kuleshov7aca0c02016-02-26 19:14:13 -0800153 return clocksource_freq2mult(khz, shift_constant, NSEC_PER_MSEC);
john stultz734efb42006-06-26 00:25:05 -0700154}
155
156/**
157 * clocksource_hz2mult - calculates mult from hz and shift
158 * @hz: Clocksource frequency in Hz
159 * @shift_constant: Clocksource shift factor
160 *
161 * Helper functions that converts a hz counter
162 * frequency to a timsource multiplier, given the
163 * clocksource shift value
164 */
165static inline u32 clocksource_hz2mult(u32 hz, u32 shift_constant)
166{
Alexander Kuleshov7aca0c02016-02-26 19:14:13 -0800167 return clocksource_freq2mult(hz, shift_constant, NSEC_PER_SEC);
john stultz734efb42006-06-26 00:25:05 -0700168}
169
170/**
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200171 * clocksource_cyc2ns - converts clocksource cycles to nanoseconds
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900172 * @cycles: cycles
173 * @mult: cycle to nanosecond multiplier
174 * @shift: cycle to nanosecond divisor (power of two)
john stultz734efb42006-06-26 00:25:05 -0700175 *
Chris Metcalfec4101e2016-11-28 14:35:20 -0800176 * Converts clocksource cycles to nanoseconds, using the given @mult and @shift.
177 * The code is optimized for performance and is not intended to work
178 * with absolute clocksource cycles (as those will easily overflow),
179 * but is only intended to be used with relative (delta) clocksource cycles.
john stultz734efb42006-06-26 00:25:05 -0700180 *
181 * XXX - This could use some mult_lxl_ll() asm optimization
182 */
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100183static inline s64 clocksource_cyc2ns(u64 cycles, u32 mult, u32 shift)
john stultz734efb42006-06-26 00:25:05 -0700184{
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200185 return ((u64) cycles * mult) >> shift;
john stultz5eb6d202006-06-26 00:25:07 -0700186}
187
188
Thomas Gleixnera89c7ed2013-04-25 20:31:46 +0000189extern int clocksource_unregister(struct clocksource*);
Jason Wessel7c3078b2008-02-15 14:55:54 -0600190extern void clocksource_touch_watchdog(void);
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800191extern void clocksource_change_rating(struct clocksource *cs, int rating);
Magnus Dammc54a42b2010-02-02 14:41:41 -0800192extern void clocksource_suspend(void);
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700193extern void clocksource_resume(void);
Bjorn Helgaas96a2adb2014-10-13 18:59:09 -0600194extern struct clocksource * __init clocksource_default_clock(void);
Thomas Gleixner7285dd72009-08-28 20:25:24 +0200195extern void clocksource_mark_unstable(struct clocksource *cs);
john stultz734efb42006-06-26 00:25:05 -0700196
Stephen Boyd87d8b9e2013-07-18 16:21:14 -0700197extern u64
John Stultzfb82fe22015-03-11 21:16:31 -0700198clocks_calc_max_nsecs(u32 mult, u32 shift, u32 maxadj, u64 mask, u64 *max_cycles);
Thomas Gleixner7d2f9442009-11-11 14:05:29 +0000199extern void
200clocks_calc_mult_shift(u32 *mult, u32 *shift, u32 from, u32 to, u32 minsec);
201
John Stultzd7e81c22010-05-07 18:07:38 -0700202/*
203 * Don't call __clocksource_register_scale directly, use
204 * clocksource_register_hz/khz
205 */
206extern int
207__clocksource_register_scale(struct clocksource *cs, u32 scale, u32 freq);
John Stultz852db462010-07-13 17:56:28 -0700208extern void
John Stultzfba9e072015-03-11 21:16:40 -0700209__clocksource_update_freq_scale(struct clocksource *cs, u32 scale, u32 freq);
John Stultzd7e81c22010-05-07 18:07:38 -0700210
John Stultzf8935982015-03-11 21:16:37 -0700211/*
212 * Don't call this unless you are a default clocksource
213 * (AKA: jiffies) and absolutely have to.
214 */
215static inline int __clocksource_register(struct clocksource *cs)
216{
217 return __clocksource_register_scale(cs, 1, 0);
218}
219
John Stultzd7e81c22010-05-07 18:07:38 -0700220static inline int clocksource_register_hz(struct clocksource *cs, u32 hz)
221{
222 return __clocksource_register_scale(cs, 1, hz);
223}
224
225static inline int clocksource_register_khz(struct clocksource *cs, u32 khz)
226{
227 return __clocksource_register_scale(cs, 1000, khz);
228}
229
John Stultzfba9e072015-03-11 21:16:40 -0700230static inline void __clocksource_update_freq_hz(struct clocksource *cs, u32 hz)
John Stultz852db462010-07-13 17:56:28 -0700231{
John Stultzfba9e072015-03-11 21:16:40 -0700232 __clocksource_update_freq_scale(cs, 1, hz);
John Stultz852db462010-07-13 17:56:28 -0700233}
234
John Stultzfba9e072015-03-11 21:16:40 -0700235static inline void __clocksource_update_freq_khz(struct clocksource *cs, u32 khz)
John Stultz852db462010-07-13 17:56:28 -0700236{
John Stultzfba9e072015-03-11 21:16:40 -0700237 __clocksource_update_freq_scale(cs, 1000, khz);
John Stultz852db462010-07-13 17:56:28 -0700238}
John Stultzd7e81c22010-05-07 18:07:38 -0700239
john stultzacc9a9d2007-02-16 01:28:17 -0800240
Thomas Gleixnerba919d12013-04-25 20:31:44 +0000241extern int timekeeping_notify(struct clocksource *clock);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200242
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100243extern u64 clocksource_mmio_readl_up(struct clocksource *);
244extern u64 clocksource_mmio_readl_down(struct clocksource *);
245extern u64 clocksource_mmio_readw_up(struct clocksource *);
246extern u64 clocksource_mmio_readw_down(struct clocksource *);
Russell King442c8172011-05-08 14:06:52 +0100247
248extern int clocksource_mmio_init(void __iomem *, const char *,
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100249 unsigned long, int, unsigned, u64 (*)(struct clocksource *));
Russell King442c8172011-05-08 14:06:52 +0100250
Russell King8c414ff2011-05-08 18:50:20 +0100251extern int clocksource_i8253_init(void);
252
Daniel Lezcano17273392017-05-26 16:56:11 +0200253#define TIMER_OF_DECLARE(name, compat, fn) \
Daniel Lezcano2fcc112a2017-05-26 18:33:27 +0200254 OF_DECLARE_1_RET(timer, name, compat, fn)
Daniel Lezcanob7c4db82016-05-31 16:25:59 +0200255
Daniel Lezcano8b7a3b52017-05-30 08:35:40 +0200256#define CLOCKSOURCE_OF_DECLARE(name, compat, fn) \
257 TIMER_OF_DECLARE(name, compat, fn)
258
Daniel Lezcanobb0eb052017-05-26 19:34:11 +0200259#ifdef CONFIG_TIMER_PROBE
Daniel Lezcanoba5d08c2017-05-26 17:40:46 +0200260extern void timer_probe(void);
Stephen Warrene1d7ef12013-01-30 10:49:30 -0700261#else
Daniel Lezcanoba5d08c2017-05-26 17:40:46 +0200262static inline void timer_probe(void) {}
Stephen Warrenae278a92012-11-19 16:41:20 -0700263#endif
264
Daniel Lezcano77d62f52017-05-26 17:42:25 +0200265#define TIMER_ACPI_DECLARE(name, table_id, fn) \
Daniel Lezcano2fcc112a2017-05-26 18:33:27 +0200266 ACPI_DECLARE_PROBE_ENTRY(timer, name, table_id, 0, NULL, 0, fn)
Marc Zyngierc625f762015-09-28 15:49:15 +0100267
john stultz734efb42006-06-26 00:25:05 -0700268#endif /* _LINUX_CLOCKSOURCE_H */