blob: 278dd279a7a8035e8be073a9664ea88f7357984a [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
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -080021struct clocksource;
Thomas Gleixner09ac3692013-04-25 20:31:44 +000022struct module;
john stultz734efb42006-06-26 00:25:05 -070023
H. Peter Anvinae7bd112011-07-21 13:34:05 -070024#ifdef CONFIG_ARCH_CLOCKSOURCE_DATA
Andy Lutomirski433bd802011-07-13 09:24:13 -040025#include <asm/clocksource.h>
H. Peter Anvinae7bd112011-07-21 13:34:05 -070026#endif
Andy Lutomirski433bd802011-07-13 09:24:13 -040027
john stultz734efb42006-06-26 00:25:05 -070028/**
29 * struct clocksource - hardware abstraction for a free running counter
30 * Provides mostly state-free accessors to the underlying hardware.
Patrick Ohlya038a352009-02-12 05:03:34 +000031 * This is the structure used for system time.
john stultz734efb42006-06-26 00:25:05 -070032 *
33 * @name: ptr to clocksource name
34 * @list: list head for registration
35 * @rating: rating value for selection (higher is better)
36 * To avoid rating inflation the following
37 * list should give you a guide as to how
38 * to assign your clocksource a rating
39 * 1-99: Unfit for real use
40 * Only available for bootup and testing purposes.
41 * 100-199: Base level usability.
42 * Functional for real use, but not desired.
43 * 200-299: Good.
44 * A correct and usable clocksource.
45 * 300-399: Desired.
46 * A reasonably fast and accurate clocksource.
47 * 400-499: Perfect
48 * The ideal clocksource. A must-use where
49 * available.
Magnus Damm8e196082009-04-21 12:24:00 -070050 * @read: returns a cycle value, passes clocksource as argument
Magnus Damm4614e6a2009-04-21 12:24:02 -070051 * @enable: optional function to enable the clocksource
52 * @disable: optional function to disable the clocksource
john stultz734efb42006-06-26 00:25:05 -070053 * @mask: bitmask for two's complement
54 * subtraction of non 64 bit counters
Martin Schwidefsky0a544192009-08-14 15:47:28 +020055 * @mult: cycle to nanosecond multiplier
john stultz734efb42006-06-26 00:25:05 -070056 * @shift: cycle to nanosecond divisor (power of two)
Jon Hunter98962462009-08-18 12:45:10 -050057 * @max_idle_ns: max idle time permitted by the clocksource (nsecs)
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +090058 * @maxadj: maximum adjustment value to mult (~11%)
John Stultzfb82fe22015-03-11 21:16:31 -070059 * @max_cycles: maximum safe cycle value which won't overflow on multiplication
Thomas Gleixner73b08d22007-02-16 01:27:36 -080060 * @flags: flags describing special properties
Andy Lutomirski433bd802011-07-13 09:24:13 -040061 * @archdata: arch-specific data
Magnus Dammc54a42b2010-02-02 14:41:41 -080062 * @suspend: suspend function for the clocksource, if necessary
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -070063 * @resume: resume function for the clocksource, if necessary
Thomas Gleixner09ac3692013-04-25 20:31:44 +000064 * @owner: module reference, must be set by clocksource in modules
john stultz734efb42006-06-26 00:25:05 -070065 */
66struct clocksource {
Eric Dumazet329c8d82007-05-08 00:27:57 -070067 /*
Thomas Gleixner369db4c2011-05-18 21:33:40 +000068 * Hotpath data, fits in a single cache line when the
69 * clocksource itself is cacheline aligned.
Eric Dumazet329c8d82007-05-08 00:27:57 -070070 */
Magnus Damm8e196082009-04-21 12:24:00 -070071 cycle_t (*read)(struct clocksource *cs);
john stultz734efb42006-06-26 00:25:05 -070072 cycle_t mask;
73 u32 mult;
74 u32 shift;
Jon Hunter98962462009-08-18 12:45:10 -050075 u64 max_idle_ns;
John Stultzd65670a2011-10-31 17:06:35 -040076 u32 maxadj;
H. Peter Anvinae7bd112011-07-21 13:34:05 -070077#ifdef CONFIG_ARCH_CLOCKSOURCE_DATA
Andy Lutomirski433bd802011-07-13 09:24:13 -040078 struct arch_clocksource_data archdata;
Tony Luck0aa366f2007-07-20 11:22:30 -070079#endif
John Stultzfb82fe22015-03-11 21:16:31 -070080 u64 max_cycles;
Thomas Gleixner369db4c2011-05-18 21:33:40 +000081 const char *name;
82 struct list_head list;
83 int rating;
Thomas Gleixner369db4c2011-05-18 21:33:40 +000084 int (*enable)(struct clocksource *cs);
85 void (*disable)(struct clocksource *cs);
86 unsigned long flags;
87 void (*suspend)(struct clocksource *cs);
88 void (*resume)(struct clocksource *cs);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -080089
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +090090 /* private: */
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -080091#ifdef CONFIG_CLOCKSOURCE_WATCHDOG
92 /* Watchdog related data, used by the framework */
93 struct list_head wd_list;
Thomas Gleixnerb5199512011-06-16 16:22:08 +020094 cycle_t cs_last;
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -080095 cycle_t wd_last;
96#endif
Thomas Gleixner09ac3692013-04-25 20:31:44 +000097 struct module *owner;
Thomas Gleixner369db4c2011-05-18 21:33:40 +000098} ____cacheline_aligned;
john stultz734efb42006-06-26 00:25:05 -070099
Thomas Gleixner73b08d22007-02-16 01:27:36 -0800100/*
101 * Clock source flags bits::
102 */
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800103#define CLOCK_SOURCE_IS_CONTINUOUS 0x01
104#define CLOCK_SOURCE_MUST_VERIFY 0x02
105
106#define CLOCK_SOURCE_WATCHDOG 0x10
107#define CLOCK_SOURCE_VALID_FOR_HRES 0x20
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200108#define CLOCK_SOURCE_UNSTABLE 0x40
Feng Tang5caf4632013-03-12 11:56:46 +0800109#define CLOCK_SOURCE_SUSPEND_NONSTOP 0x80
Thomas Gleixner332962f2013-07-04 22:46:45 +0200110#define CLOCK_SOURCE_RESELECT 0x100
Thomas Gleixner73b08d22007-02-16 01:27:36 -0800111
Jim Cromie7f9f3032006-06-26 00:25:15 -0700112/* simplify initialization of mask field */
Atsushi Nemoto1d76c262008-01-30 13:30:01 +0100113#define CLOCKSOURCE_MASK(bits) (cycle_t)((bits) < 64 ? ((1ULL<<(bits))-1) : -1)
john stultz734efb42006-06-26 00:25:05 -0700114
115/**
116 * clocksource_khz2mult - calculates mult from khz and shift
117 * @khz: Clocksource frequency in KHz
118 * @shift_constant: Clocksource shift factor
119 *
120 * Helper functions that converts a khz counter frequency to a timsource
121 * multiplier, given the clocksource shift value
122 */
123static inline u32 clocksource_khz2mult(u32 khz, u32 shift_constant)
124{
125 /* khz = cyc/(Million ns)
126 * mult/2^shift = ns/cyc
127 * mult = ns/cyc * 2^shift
128 * mult = 1Million/khz * 2^shift
129 * mult = 1000000 * 2^shift / khz
130 * mult = (1000000<<shift) / khz
131 */
132 u64 tmp = ((u64)1000000) << shift_constant;
133
134 tmp += khz/2; /* round for do_div */
135 do_div(tmp, khz);
136
137 return (u32)tmp;
138}
139
140/**
141 * clocksource_hz2mult - calculates mult from hz and shift
142 * @hz: Clocksource frequency in Hz
143 * @shift_constant: Clocksource shift factor
144 *
145 * Helper functions that converts a hz counter
146 * frequency to a timsource multiplier, given the
147 * clocksource shift value
148 */
149static inline u32 clocksource_hz2mult(u32 hz, u32 shift_constant)
150{
151 /* hz = cyc/(Billion ns)
152 * mult/2^shift = ns/cyc
153 * mult = ns/cyc * 2^shift
154 * mult = 1Billion/hz * 2^shift
155 * mult = 1000000000 * 2^shift / hz
156 * mult = (1000000000<<shift) / hz
157 */
158 u64 tmp = ((u64)1000000000) << shift_constant;
159
160 tmp += hz/2; /* round for do_div */
161 do_div(tmp, hz);
162
163 return (u32)tmp;
164}
165
166/**
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200167 * clocksource_cyc2ns - converts clocksource cycles to nanoseconds
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900168 * @cycles: cycles
169 * @mult: cycle to nanosecond multiplier
170 * @shift: cycle to nanosecond divisor (power of two)
john stultz734efb42006-06-26 00:25:05 -0700171 *
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200172 * Converts cycles to nanoseconds, using the given mult and shift.
john stultz734efb42006-06-26 00:25:05 -0700173 *
174 * XXX - This could use some mult_lxl_ll() asm optimization
175 */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200176static inline s64 clocksource_cyc2ns(cycle_t cycles, u32 mult, u32 shift)
john stultz734efb42006-06-26 00:25:05 -0700177{
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200178 return ((u64) cycles * mult) >> shift;
john stultz5eb6d202006-06-26 00:25:07 -0700179}
180
181
Thomas Gleixnera89c7ed2013-04-25 20:31:46 +0000182extern int clocksource_unregister(struct clocksource*);
Jason Wessel7c3078b2008-02-15 14:55:54 -0600183extern void clocksource_touch_watchdog(void);
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800184extern void clocksource_change_rating(struct clocksource *cs, int rating);
Magnus Dammc54a42b2010-02-02 14:41:41 -0800185extern void clocksource_suspend(void);
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700186extern void clocksource_resume(void);
Bjorn Helgaas96a2adb2014-10-13 18:59:09 -0600187extern struct clocksource * __init clocksource_default_clock(void);
Thomas Gleixner7285dd72009-08-28 20:25:24 +0200188extern void clocksource_mark_unstable(struct clocksource *cs);
john stultz734efb42006-06-26 00:25:05 -0700189
Stephen Boyd87d8b9e2013-07-18 16:21:14 -0700190extern u64
John Stultzfb82fe22015-03-11 21:16:31 -0700191clocks_calc_max_nsecs(u32 mult, u32 shift, u32 maxadj, u64 mask, u64 *max_cycles);
Thomas Gleixner7d2f9442009-11-11 14:05:29 +0000192extern void
193clocks_calc_mult_shift(u32 *mult, u32 *shift, u32 from, u32 to, u32 minsec);
194
John Stultzd7e81c22010-05-07 18:07:38 -0700195/*
196 * Don't call __clocksource_register_scale directly, use
197 * clocksource_register_hz/khz
198 */
199extern int
200__clocksource_register_scale(struct clocksource *cs, u32 scale, u32 freq);
John Stultz852db462010-07-13 17:56:28 -0700201extern void
John Stultzfba9e072015-03-11 21:16:40 -0700202__clocksource_update_freq_scale(struct clocksource *cs, u32 scale, u32 freq);
John Stultzd7e81c22010-05-07 18:07:38 -0700203
John Stultzf8935982015-03-11 21:16:37 -0700204/*
205 * Don't call this unless you are a default clocksource
206 * (AKA: jiffies) and absolutely have to.
207 */
208static inline int __clocksource_register(struct clocksource *cs)
209{
210 return __clocksource_register_scale(cs, 1, 0);
211}
212
John Stultzd7e81c22010-05-07 18:07:38 -0700213static inline int clocksource_register_hz(struct clocksource *cs, u32 hz)
214{
215 return __clocksource_register_scale(cs, 1, hz);
216}
217
218static inline int clocksource_register_khz(struct clocksource *cs, u32 khz)
219{
220 return __clocksource_register_scale(cs, 1000, khz);
221}
222
John Stultzfba9e072015-03-11 21:16:40 -0700223static inline void __clocksource_update_freq_hz(struct clocksource *cs, u32 hz)
John Stultz852db462010-07-13 17:56:28 -0700224{
John Stultzfba9e072015-03-11 21:16:40 -0700225 __clocksource_update_freq_scale(cs, 1, hz);
John Stultz852db462010-07-13 17:56:28 -0700226}
227
John Stultzfba9e072015-03-11 21:16:40 -0700228static inline void __clocksource_update_freq_khz(struct clocksource *cs, u32 khz)
John Stultz852db462010-07-13 17:56:28 -0700229{
John Stultzfba9e072015-03-11 21:16:40 -0700230 __clocksource_update_freq_scale(cs, 1000, khz);
John Stultz852db462010-07-13 17:56:28 -0700231}
John Stultzd7e81c22010-05-07 18:07:38 -0700232
john stultzacc9a9d2007-02-16 01:28:17 -0800233
Thomas Gleixnerba919d12013-04-25 20:31:44 +0000234extern int timekeeping_notify(struct clocksource *clock);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200235
Russell King442c8172011-05-08 14:06:52 +0100236extern cycle_t clocksource_mmio_readl_up(struct clocksource *);
237extern cycle_t clocksource_mmio_readl_down(struct clocksource *);
238extern cycle_t clocksource_mmio_readw_up(struct clocksource *);
239extern cycle_t clocksource_mmio_readw_down(struct clocksource *);
240
241extern int clocksource_mmio_init(void __iomem *, const char *,
242 unsigned long, int, unsigned, cycle_t (*)(struct clocksource *));
243
Russell King8c414ff2011-05-08 18:50:20 +0100244extern int clocksource_i8253_init(void);
245
Rob Herring54196cc2014-05-08 16:09:24 -0500246#define CLOCKSOURCE_OF_DECLARE(name, compat, fn) \
247 OF_DECLARE_1(clksrc, name, compat, fn)
248
Stephen Warrenae278a92012-11-19 16:41:20 -0700249#ifdef CONFIG_CLKSRC_OF
250extern void clocksource_of_init(void);
Stephen Warrene1d7ef12013-01-30 10:49:30 -0700251#else
Rob Herringe0c25362013-03-10 21:52:53 -0500252static inline void clocksource_of_init(void) {}
Stephen Warrenae278a92012-11-19 16:41:20 -0700253#endif
254
Hanjun Guob09ca1e2015-03-24 14:02:50 +0000255#ifdef CONFIG_ACPI
256void acpi_generic_timer_init(void);
257#else
258static inline void acpi_generic_timer_init(void) { }
259#endif
260
john stultz734efb42006-06-26 00:25:05 -0700261#endif /* _LINUX_CLOCKSOURCE_H */