blob: 86d143db65231649af215c30dfc24814f0d38349 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
john stultz734efb42006-06-26 00:25:05 -07002/* linux/include/linux/clocksource.h
3 *
4 * This file contains the structure definitions for clocksources.
5 *
6 * If you are not a clocksource, or timekeeping code, you should
7 * not be including this file!
8 */
9#ifndef _LINUX_CLOCKSOURCE_H
10#define _LINUX_CLOCKSOURCE_H
11
12#include <linux/types.h>
13#include <linux/timex.h>
14#include <linux/time.h>
15#include <linux/list.h>
Eric Dumazet329c8d82007-05-08 00:27:57 -070016#include <linux/cache.h>
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -080017#include <linux/timer.h>
Martin Schwidefskyf1b82742009-08-14 15:47:21 +020018#include <linux/init.h>
David Lechner02fad5e2016-03-09 18:16:54 -060019#include <linux/of.h>
john stultz734efb42006-06-26 00:25:05 -070020#include <asm/div64.h>
21#include <asm/io.h>
22
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
Thomas Gleixner5d51bee2020-02-07 13:38:55 +010026#if defined(CONFIG_ARCH_CLOCKSOURCE_DATA) || \
Thomas Gleixnerf86fd322020-02-07 13:38:59 +010027 defined(CONFIG_GENERIC_GETTIMEOFDAY)
Andy Lutomirski433bd802011-07-13 09:24:13 -040028#include <asm/clocksource.h>
H. Peter Anvinae7bd112011-07-21 13:34:05 -070029#endif
Andy Lutomirski433bd802011-07-13 09:24:13 -040030
Vincenzo Frascino14ee2ac2020-03-20 14:53:33 +000031#include <vdso/clocksource.h>
Thomas Gleixner5d51bee2020-02-07 13:38:55 +010032
john stultz734efb42006-06-26 00:25:05 -070033/**
34 * struct clocksource - hardware abstraction for a free running counter
35 * Provides mostly state-free accessors to the underlying hardware.
Patrick Ohlya038a352009-02-12 05:03:34 +000036 * This is the structure used for system time.
john stultz734efb42006-06-26 00:25:05 -070037 *
Thomas Gleixner3bd142a2020-02-07 13:38:53 +010038 * @read: Returns a cycle value, passes clocksource as argument
39 * @mask: Bitmask for two's complement
40 * subtraction of non 64 bit counters
41 * @mult: Cycle to nanosecond multiplier
42 * @shift: Cycle to nanosecond divisor (power of two)
43 * @max_idle_ns: Maximum idle time permitted by the clocksource (nsecs)
44 * @maxadj: Maximum adjustment value to mult (~11%)
45 * @archdata: Optional arch-specific data
46 * @max_cycles: Maximum safe cycle value which won't overflow on
47 * multiplication
48 * @name: Pointer to clocksource name
49 * @list: List head for registration (internal)
50 * @rating: Rating value for selection (higher is better)
john stultz734efb42006-06-26 00:25:05 -070051 * To avoid rating inflation the following
52 * list should give you a guide as to how
53 * to assign your clocksource a rating
54 * 1-99: Unfit for real use
55 * Only available for bootup and testing purposes.
56 * 100-199: Base level usability.
57 * Functional for real use, but not desired.
58 * 200-299: Good.
59 * A correct and usable clocksource.
60 * 300-399: Desired.
61 * A reasonably fast and accurate clocksource.
62 * 400-499: Perfect
63 * The ideal clocksource. A must-use where
64 * available.
Thomas Gleixner3bd142a2020-02-07 13:38:53 +010065 * @flags: Flags describing special properties
66 * @enable: Optional function to enable the clocksource
67 * @disable: Optional function to disable the clocksource
68 * @suspend: Optional suspend function for the clocksource
69 * @resume: Optional resume function for the clocksource
Thomas Gleixner12907fb2016-12-15 11:44:28 +010070 * @mark_unstable: Optional function to inform the clocksource driver that
71 * the watchdog marked the clocksource unstable
Thomas Gleixner3bd142a2020-02-07 13:38:53 +010072 * @tick_stable: Optional function called periodically from the watchdog
73 * code to provide stable syncrhonization points
74 * @wd_list: List head to enqueue into the watchdog list (internal)
75 * @cs_last: Last clocksource value for clocksource watchdog
76 * @wd_last: Last watchdog value corresponding to @cs_last
77 * @owner: Module reference, must be set by clocksource in modules
Thomas Gleixner09a99822015-11-19 11:43:09 +010078 *
79 * Note: This struct is not used in hotpathes of the timekeeping code
80 * because the timekeeper caches the hot path fields in its own data
Thomas Gleixner3bd142a2020-02-07 13:38:53 +010081 * structure, so no cache line alignment is required,
Thomas Gleixner09a99822015-11-19 11:43:09 +010082 *
83 * The pointer to the clocksource itself is handed to the read
84 * callback. If you need extra information there you can wrap struct
85 * clocksource into your own struct. Depending on the amount of
86 * information you need you should consider to cache line align that
87 * structure.
john stultz734efb42006-06-26 00:25:05 -070088 */
89struct clocksource {
Thomas Gleixner3bd142a2020-02-07 13:38:53 +010090 u64 (*read)(struct clocksource *cs);
91 u64 mask;
92 u32 mult;
93 u32 shift;
94 u64 max_idle_ns;
95 u32 maxadj;
H. Peter Anvinae7bd112011-07-21 13:34:05 -070096#ifdef CONFIG_ARCH_CLOCKSOURCE_DATA
Andy Lutomirski433bd802011-07-13 09:24:13 -040097 struct arch_clocksource_data archdata;
Tony Luck0aa366f2007-07-20 11:22:30 -070098#endif
Thomas Gleixner3bd142a2020-02-07 13:38:53 +010099 u64 max_cycles;
100 const char *name;
101 struct list_head list;
102 int rating;
Thomas Gleixner5d51bee2020-02-07 13:38:55 +0100103 enum vdso_clock_mode vdso_clock_mode;
Thomas Gleixner3bd142a2020-02-07 13:38:53 +0100104 unsigned long flags;
105
106 int (*enable)(struct clocksource *cs);
107 void (*disable)(struct clocksource *cs);
108 void (*suspend)(struct clocksource *cs);
109 void (*resume)(struct clocksource *cs);
110 void (*mark_unstable)(struct clocksource *cs);
111 void (*tick_stable)(struct clocksource *cs);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800112
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900113 /* private: */
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800114#ifdef CONFIG_CLOCKSOURCE_WATCHDOG
115 /* Watchdog related data, used by the framework */
Thomas Gleixner3bd142a2020-02-07 13:38:53 +0100116 struct list_head wd_list;
117 u64 cs_last;
118 u64 wd_last;
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800119#endif
Thomas Gleixner3bd142a2020-02-07 13:38:53 +0100120 struct module *owner;
Thomas Gleixner09a99822015-11-19 11:43:09 +0100121};
john stultz734efb42006-06-26 00:25:05 -0700122
Thomas Gleixner73b08d22007-02-16 01:27:36 -0800123/*
124 * Clock source flags bits::
125 */
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800126#define CLOCK_SOURCE_IS_CONTINUOUS 0x01
127#define CLOCK_SOURCE_MUST_VERIFY 0x02
128
129#define CLOCK_SOURCE_WATCHDOG 0x10
130#define CLOCK_SOURCE_VALID_FOR_HRES 0x20
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200131#define CLOCK_SOURCE_UNSTABLE 0x40
Feng Tang5caf4632013-03-12 11:56:46 +0800132#define CLOCK_SOURCE_SUSPEND_NONSTOP 0x80
Thomas Gleixner332962f2013-07-04 22:46:45 +0200133#define CLOCK_SOURCE_RESELECT 0x100
Thomas Gleixner73b08d22007-02-16 01:27:36 -0800134
Jim Cromie7f9f3032006-06-26 00:25:15 -0700135/* simplify initialization of mask field */
Matthias Kaehlcke0773cea2017-04-18 16:30:37 -0700136#define CLOCKSOURCE_MASK(bits) GENMASK_ULL((bits) - 1, 0)
john stultz734efb42006-06-26 00:25:05 -0700137
Alexander Kuleshov7aca0c02016-02-26 19:14:13 -0800138static inline u32 clocksource_freq2mult(u32 freq, u32 shift_constant, u64 from)
139{
140 /* freq = cyc/from
141 * mult/2^shift = ns/cyc
142 * mult = ns/cyc * 2^shift
143 * mult = from/freq * 2^shift
144 * mult = from * 2^shift / freq
145 * mult = (from<<shift) / freq
146 */
147 u64 tmp = ((u64)from) << shift_constant;
148
149 tmp += freq/2; /* round for do_div */
150 do_div(tmp, freq);
151
152 return (u32)tmp;
153}
154
john stultz734efb42006-06-26 00:25:05 -0700155/**
156 * clocksource_khz2mult - calculates mult from khz and shift
157 * @khz: Clocksource frequency in KHz
158 * @shift_constant: Clocksource shift factor
159 *
160 * Helper functions that converts a khz counter frequency to a timsource
161 * multiplier, given the clocksource shift value
162 */
163static inline u32 clocksource_khz2mult(u32 khz, u32 shift_constant)
164{
Alexander Kuleshov7aca0c02016-02-26 19:14:13 -0800165 return clocksource_freq2mult(khz, shift_constant, NSEC_PER_MSEC);
john stultz734efb42006-06-26 00:25:05 -0700166}
167
168/**
169 * clocksource_hz2mult - calculates mult from hz and shift
170 * @hz: Clocksource frequency in Hz
171 * @shift_constant: Clocksource shift factor
172 *
173 * Helper functions that converts a hz counter
174 * frequency to a timsource multiplier, given the
175 * clocksource shift value
176 */
177static inline u32 clocksource_hz2mult(u32 hz, u32 shift_constant)
178{
Alexander Kuleshov7aca0c02016-02-26 19:14:13 -0800179 return clocksource_freq2mult(hz, shift_constant, NSEC_PER_SEC);
john stultz734efb42006-06-26 00:25:05 -0700180}
181
182/**
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200183 * clocksource_cyc2ns - converts clocksource cycles to nanoseconds
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900184 * @cycles: cycles
185 * @mult: cycle to nanosecond multiplier
186 * @shift: cycle to nanosecond divisor (power of two)
john stultz734efb42006-06-26 00:25:05 -0700187 *
Chris Metcalfec4101e2016-11-28 14:35:20 -0800188 * Converts clocksource cycles to nanoseconds, using the given @mult and @shift.
189 * The code is optimized for performance and is not intended to work
190 * with absolute clocksource cycles (as those will easily overflow),
191 * but is only intended to be used with relative (delta) clocksource cycles.
john stultz734efb42006-06-26 00:25:05 -0700192 *
193 * XXX - This could use some mult_lxl_ll() asm optimization
194 */
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100195static inline s64 clocksource_cyc2ns(u64 cycles, u32 mult, u32 shift)
john stultz734efb42006-06-26 00:25:05 -0700196{
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200197 return ((u64) cycles * mult) >> shift;
john stultz5eb6d202006-06-26 00:25:07 -0700198}
199
200
Thomas Gleixnera89c7ed2013-04-25 20:31:46 +0000201extern int clocksource_unregister(struct clocksource*);
Jason Wessel7c3078b2008-02-15 14:55:54 -0600202extern void clocksource_touch_watchdog(void);
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800203extern void clocksource_change_rating(struct clocksource *cs, int rating);
Magnus Dammc54a42b2010-02-02 14:41:41 -0800204extern void clocksource_suspend(void);
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700205extern void clocksource_resume(void);
Bjorn Helgaas96a2adb2014-10-13 18:59:09 -0600206extern struct clocksource * __init clocksource_default_clock(void);
Thomas Gleixner7285dd72009-08-28 20:25:24 +0200207extern void clocksource_mark_unstable(struct clocksource *cs);
Baolin Wang39232ed2018-07-17 15:55:16 +0800208extern void
209clocksource_start_suspend_timing(struct clocksource *cs, u64 start_cycles);
210extern u64 clocksource_stop_suspend_timing(struct clocksource *cs, u64 now);
john stultz734efb42006-06-26 00:25:05 -0700211
Stephen Boyd87d8b9e2013-07-18 16:21:14 -0700212extern u64
John Stultzfb82fe22015-03-11 21:16:31 -0700213clocks_calc_max_nsecs(u32 mult, u32 shift, u32 maxadj, u64 mask, u64 *max_cycles);
Thomas Gleixner7d2f9442009-11-11 14:05:29 +0000214extern void
215clocks_calc_mult_shift(u32 *mult, u32 *shift, u32 from, u32 to, u32 minsec);
216
John Stultzd7e81c22010-05-07 18:07:38 -0700217/*
218 * Don't call __clocksource_register_scale directly, use
219 * clocksource_register_hz/khz
220 */
221extern int
222__clocksource_register_scale(struct clocksource *cs, u32 scale, u32 freq);
John Stultz852db462010-07-13 17:56:28 -0700223extern void
John Stultzfba9e072015-03-11 21:16:40 -0700224__clocksource_update_freq_scale(struct clocksource *cs, u32 scale, u32 freq);
John Stultzd7e81c22010-05-07 18:07:38 -0700225
John Stultzf8935982015-03-11 21:16:37 -0700226/*
227 * Don't call this unless you are a default clocksource
228 * (AKA: jiffies) and absolutely have to.
229 */
230static inline int __clocksource_register(struct clocksource *cs)
231{
232 return __clocksource_register_scale(cs, 1, 0);
233}
234
John Stultzd7e81c22010-05-07 18:07:38 -0700235static inline int clocksource_register_hz(struct clocksource *cs, u32 hz)
236{
237 return __clocksource_register_scale(cs, 1, hz);
238}
239
240static inline int clocksource_register_khz(struct clocksource *cs, u32 khz)
241{
242 return __clocksource_register_scale(cs, 1000, khz);
243}
244
John Stultzfba9e072015-03-11 21:16:40 -0700245static inline void __clocksource_update_freq_hz(struct clocksource *cs, u32 hz)
John Stultz852db462010-07-13 17:56:28 -0700246{
John Stultzfba9e072015-03-11 21:16:40 -0700247 __clocksource_update_freq_scale(cs, 1, hz);
John Stultz852db462010-07-13 17:56:28 -0700248}
249
John Stultzfba9e072015-03-11 21:16:40 -0700250static inline void __clocksource_update_freq_khz(struct clocksource *cs, u32 khz)
John Stultz852db462010-07-13 17:56:28 -0700251{
John Stultzfba9e072015-03-11 21:16:40 -0700252 __clocksource_update_freq_scale(cs, 1000, khz);
John Stultz852db462010-07-13 17:56:28 -0700253}
John Stultzd7e81c22010-05-07 18:07:38 -0700254
Thomas Gleixnerd67f34c2018-09-17 14:45:34 +0200255#ifdef CONFIG_ARCH_CLOCKSOURCE_INIT
256extern void clocksource_arch_init(struct clocksource *cs);
257#else
258static inline void clocksource_arch_init(struct clocksource *cs) { }
259#endif
john stultzacc9a9d2007-02-16 01:28:17 -0800260
Thomas Gleixnerba919d12013-04-25 20:31:44 +0000261extern int timekeeping_notify(struct clocksource *clock);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200262
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100263extern u64 clocksource_mmio_readl_up(struct clocksource *);
264extern u64 clocksource_mmio_readl_down(struct clocksource *);
265extern u64 clocksource_mmio_readw_up(struct clocksource *);
266extern u64 clocksource_mmio_readw_down(struct clocksource *);
Russell King442c8172011-05-08 14:06:52 +0100267
268extern int clocksource_mmio_init(void __iomem *, const char *,
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100269 unsigned long, int, unsigned, u64 (*)(struct clocksource *));
Russell King442c8172011-05-08 14:06:52 +0100270
Russell King8c414ff2011-05-08 18:50:20 +0100271extern int clocksource_i8253_init(void);
272
Daniel Lezcano17273392017-05-26 16:56:11 +0200273#define TIMER_OF_DECLARE(name, compat, fn) \
Daniel Lezcano2fcc112a2017-05-26 18:33:27 +0200274 OF_DECLARE_1_RET(timer, name, compat, fn)
Daniel Lezcanob7c4db82016-05-31 16:25:59 +0200275
Daniel Lezcanobb0eb052017-05-26 19:34:11 +0200276#ifdef CONFIG_TIMER_PROBE
Daniel Lezcanoba5d08c2017-05-26 17:40:46 +0200277extern void timer_probe(void);
Stephen Warrene1d7ef12013-01-30 10:49:30 -0700278#else
Daniel Lezcanoba5d08c2017-05-26 17:40:46 +0200279static inline void timer_probe(void) {}
Stephen Warrenae278a92012-11-19 16:41:20 -0700280#endif
281
Daniel Lezcano77d62f52017-05-26 17:42:25 +0200282#define TIMER_ACPI_DECLARE(name, table_id, fn) \
Daniel Lezcano2fcc112a2017-05-26 18:33:27 +0200283 ACPI_DECLARE_PROBE_ENTRY(timer, name, table_id, 0, NULL, 0, fn)
Marc Zyngierc625f762015-09-28 15:49:15 +0100284
john stultz734efb42006-06-26 00:25:05 -0700285#endif /* _LINUX_CLOCKSOURCE_H */