blob: 96c280b2c263476c053bdd0c514aa16df3d04212 [file] [log] [blame]
Thomas Gleixnerd316c572007-02-16 01:28:00 -08001/* linux/include/linux/clockchips.h
2 *
3 * This file contains the structure definitions for clockchips.
4 *
5 * If you are not a clockchip, or the time of day code, you should
6 * not be including this file!
7 */
8#ifndef _LINUX_CLOCKCHIPS_H
9#define _LINUX_CLOCKCHIPS_H
10
Thomas Gleixner9f083b72015-03-25 13:05:19 +010011#ifdef CONFIG_GENERIC_CLOCKEVENTS
Thomas Gleixnerd316c572007-02-16 01:28:00 -080012
Ingo Molnar9eed56e2015-04-02 11:26:23 +020013# include <linux/clocksource.h>
14# include <linux/cpumask.h>
15# include <linux/ktime.h>
16# include <linux/notifier.h>
Thomas Gleixnerd316c572007-02-16 01:28:00 -080017
18struct clock_event_device;
Thomas Gleixnerccf33d62013-04-25 20:31:49 +000019struct module;
Thomas Gleixnerd316c572007-02-16 01:28:00 -080020
Viresh Kumar77e32c82015-02-27 17:21:33 +053021/* Clock event mode commands for legacy ->set_mode(): OBSOLETE */
Thomas Gleixnerd316c572007-02-16 01:28:00 -080022enum clock_event_mode {
Ingo Molnar9eed56e2015-04-02 11:26:23 +020023 CLOCK_EVT_MODE_UNUSED,
Thomas Gleixnerd316c572007-02-16 01:28:00 -080024 CLOCK_EVT_MODE_SHUTDOWN,
25 CLOCK_EVT_MODE_PERIODIC,
26 CLOCK_EVT_MODE_ONESHOT,
Thomas Gleixner18de5bc2007-07-21 04:37:34 -070027 CLOCK_EVT_MODE_RESUME,
Viresh Kumar77e32c82015-02-27 17:21:33 +053028};
Viresh Kumarbd624d72015-02-13 08:54:56 +080029
Viresh Kumar77e32c82015-02-27 17:21:33 +053030/*
31 * Possible states of a clock event device.
32 *
33 * DETACHED: Device is not used by clockevents core. Initial state or can be
34 * reached from SHUTDOWN.
35 * SHUTDOWN: Device is powered-off. Can be reached from PERIODIC or ONESHOT.
36 * PERIODIC: Device is programmed to generate events periodically. Can be
37 * reached from DETACHED or SHUTDOWN.
38 * ONESHOT: Device is programmed to generate event only once. Can be reached
39 * from DETACHED or SHUTDOWN.
40 */
41enum clock_event_state {
Ingo Molnar9eed56e2015-04-02 11:26:23 +020042 CLOCK_EVT_STATE_DETACHED,
Viresh Kumar77e32c82015-02-27 17:21:33 +053043 CLOCK_EVT_STATE_SHUTDOWN,
44 CLOCK_EVT_STATE_PERIODIC,
45 CLOCK_EVT_STATE_ONESHOT,
Thomas Gleixnerd316c572007-02-16 01:28:00 -080046};
47
Thomas Gleixnerd316c572007-02-16 01:28:00 -080048/*
49 * Clock event features
50 */
Ingo Molnar9eed56e2015-04-02 11:26:23 +020051# define CLOCK_EVT_FEAT_PERIODIC 0x000001
52# define CLOCK_EVT_FEAT_ONESHOT 0x000002
53# define CLOCK_EVT_FEAT_KTIME 0x000004
54
Thomas Gleixnerd316c572007-02-16 01:28:00 -080055/*
Ingo Molnar9eed56e2015-04-02 11:26:23 +020056 * x86(64) specific (mis)features:
Thomas Gleixnerd316c572007-02-16 01:28:00 -080057 *
58 * - Clockevent source stops in C3 State and needs broadcast support.
59 * - Local APIC timer is used as a dummy device.
60 */
Ingo Molnar9eed56e2015-04-02 11:26:23 +020061# define CLOCK_EVT_FEAT_C3STOP 0x000008
62# define CLOCK_EVT_FEAT_DUMMY 0x000010
Thomas Gleixnerd316c572007-02-16 01:28:00 -080063
Daniel Lezcanod2348fb2013-03-02 11:10:11 +010064/*
65 * Core shall set the interrupt affinity dynamically in broadcast mode
66 */
Ingo Molnar9eed56e2015-04-02 11:26:23 +020067# define CLOCK_EVT_FEAT_DYNIRQ 0x000020
68# define CLOCK_EVT_FEAT_PERCPU 0x000040
Daniel Lezcanod2348fb2013-03-02 11:10:11 +010069
Preeti U Murthy5d1638a2014-02-07 13:36:32 +053070/*
71 * Clockevent device is based on a hrtimer for broadcast
72 */
Ingo Molnar9eed56e2015-04-02 11:26:23 +020073# define CLOCK_EVT_FEAT_HRTIMER 0x000080
Preeti U Murthy5d1638a2014-02-07 13:36:32 +053074
Thomas Gleixnerd316c572007-02-16 01:28:00 -080075/**
76 * struct clock_event_device - clock event device descriptor
Thomas Gleixner847b2f42011-05-18 21:33:41 +000077 * @event_handler: Assigned by the framework to be called by the low
78 * level handler of the event source
Martin Schwidefsky65516f82011-08-23 15:29:43 +020079 * @set_next_event: set next event function using a clocksource delta
80 * @set_next_ktime: set next event function using a direct ktime value
Thomas Gleixner847b2f42011-05-18 21:33:41 +000081 * @next_event: local storage for the next event in oneshot mode
Thomas Gleixnerd316c572007-02-16 01:28:00 -080082 * @max_delta_ns: maximum delta value in ns
83 * @min_delta_ns: minimum delta value in ns
84 * @mult: nanosecond to cycles multiplier
85 * @shift: nanoseconds to cycles divisor (power of two)
Viresh Kumar77e32c82015-02-27 17:21:33 +053086 * @mode: operating mode, relevant only to ->set_mode(), OBSOLETE
87 * @state: current state of the device, assigned by the core code
Thomas Gleixner847b2f42011-05-18 21:33:41 +000088 * @features: features
89 * @retries: number of forced programming retries
Viresh Kumarbd624d72015-02-13 08:54:56 +080090 * @set_mode: legacy set mode function, only for modes <= CLOCK_EVT_MODE_RESUME.
Viresh Kumar77e32c82015-02-27 17:21:33 +053091 * @set_state_periodic: switch state to periodic, if !set_mode
92 * @set_state_oneshot: switch state to oneshot, if !set_mode
93 * @set_state_shutdown: switch state to shutdown, if !set_mode
Viresh Kumar554ef382015-02-27 17:21:32 +053094 * @tick_resume: resume clkevt device, if !set_mode
Thomas Gleixner847b2f42011-05-18 21:33:41 +000095 * @broadcast: function to broadcast events
Thomas Gleixner57f0fcb2011-05-18 21:33:41 +000096 * @min_delta_ticks: minimum delta value in ticks stored for reconfiguration
97 * @max_delta_ticks: maximum delta value in ticks stored for reconfiguration
Thomas Gleixner847b2f42011-05-18 21:33:41 +000098 * @name: ptr to clock event name
Thomas Gleixnerd316c572007-02-16 01:28:00 -080099 * @rating: variable to rate clock event devices
Sergei Shtylyovce0be122007-05-08 00:31:55 -0700100 * @irq: IRQ number (only for non CPU local devices)
Preeti U Murthy5d1638a2014-02-07 13:36:32 +0530101 * @bound_on: Bound on CPU
Sergei Shtylyovce0be122007-05-08 00:31:55 -0700102 * @cpumask: cpumask to indicate for which CPUs this device works
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800103 * @list: list head for the management code
Thomas Gleixnerccf33d62013-04-25 20:31:49 +0000104 * @owner: module reference
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800105 */
106struct clock_event_device {
Thomas Gleixner847b2f42011-05-18 21:33:41 +0000107 void (*event_handler)(struct clock_event_device *);
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200108 int (*set_next_event)(unsigned long evt, struct clock_event_device *);
109 int (*set_next_ktime)(ktime_t expires, struct clock_event_device *);
Thomas Gleixner847b2f42011-05-18 21:33:41 +0000110 ktime_t next_event;
Jon Hunter97813f22009-08-18 12:45:11 -0500111 u64 max_delta_ns;
112 u64 min_delta_ns;
Thomas Gleixner23af3682009-11-11 14:05:25 +0000113 u32 mult;
114 u32 shift;
Thomas Gleixner847b2f42011-05-18 21:33:41 +0000115 enum clock_event_mode mode;
Viresh Kumar77e32c82015-02-27 17:21:33 +0530116 enum clock_event_state state;
Thomas Gleixner847b2f42011-05-18 21:33:41 +0000117 unsigned int features;
118 unsigned long retries;
119
Viresh Kumarbd624d72015-02-13 08:54:56 +0800120 /*
Viresh Kumar77e32c82015-02-27 17:21:33 +0530121 * State transition callback(s): Only one of the two groups should be
Viresh Kumarbd624d72015-02-13 08:54:56 +0800122 * defined:
123 * - set_mode(), only for modes <= CLOCK_EVT_MODE_RESUME.
Viresh Kumar77e32c82015-02-27 17:21:33 +0530124 * - set_state_{shutdown|periodic|oneshot}(), tick_resume().
Viresh Kumarbd624d72015-02-13 08:54:56 +0800125 */
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200126 void (*set_mode)(enum clock_event_mode mode, struct clock_event_device *);
Viresh Kumar77e32c82015-02-27 17:21:33 +0530127 int (*set_state_periodic)(struct clock_event_device *);
128 int (*set_state_oneshot)(struct clock_event_device *);
129 int (*set_state_shutdown)(struct clock_event_device *);
Viresh Kumar554ef382015-02-27 17:21:32 +0530130 int (*tick_resume)(struct clock_event_device *);
Viresh Kumarbd624d72015-02-13 08:54:56 +0800131
132 void (*broadcast)(const struct cpumask *mask);
Rafael J. Wysockiadc78e62012-08-06 01:40:41 +0200133 void (*suspend)(struct clock_event_device *);
134 void (*resume)(struct clock_event_device *);
Thomas Gleixner57f0fcb2011-05-18 21:33:41 +0000135 unsigned long min_delta_ticks;
136 unsigned long max_delta_ticks;
137
Thomas Gleixner847b2f42011-05-18 21:33:41 +0000138 const char *name;
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800139 int rating;
140 int irq;
Preeti U Murthy5d1638a2014-02-07 13:36:32 +0530141 int bound_on;
Rusty Russell320ab2b2008-12-13 21:20:26 +1030142 const struct cpumask *cpumask;
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800143 struct list_head list;
Thomas Gleixnerccf33d62013-04-25 20:31:49 +0000144 struct module *owner;
Thomas Gleixner847b2f42011-05-18 21:33:41 +0000145} ____cacheline_aligned;
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800146
147/*
148 * Calculate a multiplication factor for scaled math, which is used to convert
149 * nanoseconds based values to clock ticks:
150 *
151 * clock_ticks = (nanoseconds * factor) >> shift.
152 *
153 * div_sc is the rearranged equation to calculate a factor from a given clock
154 * ticks / nanoseconds ratio:
155 *
156 * factor = (clock_ticks << shift) / nanoseconds
157 */
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200158static inline unsigned long
159div_sc(unsigned long ticks, unsigned long nsec, int shift)
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800160{
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200161 u64 tmp = ((u64)ticks) << shift;
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800162
163 do_div(tmp, nsec);
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200164
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800165 return (unsigned long) tmp;
166}
167
168/* Clock event layer functions */
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200169extern u64 clockevent_delta2ns(unsigned long latch, struct clock_event_device *evt);
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800170extern void clockevents_register_device(struct clock_event_device *dev);
Thomas Gleixner03e13cf2013-04-25 20:31:50 +0000171extern int clockevents_unbind_device(struct clock_event_device *ced, int cpu);
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800172
Magnus Damme5400322012-05-09 23:39:34 +0900173extern void clockevents_config(struct clock_event_device *dev, u32 freq);
Thomas Gleixner57f0fcb2011-05-18 21:33:41 +0000174extern void clockevents_config_and_register(struct clock_event_device *dev,
175 u32 freq, unsigned long min_delta,
176 unsigned long max_delta);
177
Thomas Gleixner80b816b2011-05-18 21:33:42 +0000178extern int clockevents_update_freq(struct clock_event_device *ce, u32 freq);
179
Thomas Gleixner7d2f9442009-11-11 14:05:29 +0000180static inline void
181clockevents_calc_mult_shift(struct clock_event_device *ce, u32 freq, u32 minsec)
182{
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200183 return clocks_calc_mult_shift(&ce->mult, &ce->shift, NSEC_PER_SEC, freq, minsec);
Thomas Gleixner7d2f9442009-11-11 14:05:29 +0000184}
185
Rafael J. Wysockiadc78e62012-08-06 01:40:41 +0200186extern void clockevents_suspend(void);
187extern void clockevents_resume(void);
188
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200189# ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
190# ifdef CONFIG_ARCH_HAS_TICK_BROADCAST
Mark Rutland12ad1002013-01-14 17:05:22 +0000191extern void tick_broadcast(const struct cpumask *mask);
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200192# else
193# define tick_broadcast NULL
194# endif
Mark Rutland12572db2013-01-14 17:05:21 +0000195extern int tick_receive_broadcast(void);
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200196# endif
Mark Rutland12572db2013-01-14 17:05:21 +0000197
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200198# if defined(CONFIG_GENERIC_CLOCKEVENTS_BROADCAST) && defined(CONFIG_TICK_ONESHOT)
Preeti U Murthy5d1638a2014-02-07 13:36:32 +0530199extern void tick_setup_hrtimer_broadcast(void);
Thomas Gleixnereaa907c2013-03-06 11:18:36 +0000200extern int tick_check_broadcast_expired(void);
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200201# else
Thomas Gleixnereaa907c2013-03-06 11:18:36 +0000202static inline int tick_check_broadcast_expired(void) { return 0; }
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200203static inline void tick_setup_hrtimer_broadcast(void) { }
204# endif
Thomas Gleixnereaa907c2013-03-06 11:18:36 +0000205
Preeti U Murthyda7e6f42014-02-07 13:36:06 +0530206extern int clockevents_notify(unsigned long reason, void *arg);
Thomas Gleixnerde68d9b2007-10-12 23:04:05 +0200207
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200208#else /* !CONFIG_GENERIC_CLOCKEVENTS: */
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800209
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200210static inline void clockevents_suspend(void) { }
211static inline void clockevents_resume(void) { }
Preeti U Murthyda7e6f42014-02-07 13:36:06 +0530212static inline int clockevents_notify(unsigned long reason, void *arg) { return 0; }
Thomas Gleixner19919222013-03-22 10:48:33 +0100213static inline int tick_check_broadcast_expired(void) { return 0; }
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200214static inline void tick_setup_hrtimer_broadcast(void) { }
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800215
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200216#endif /* !CONFIG_GENERIC_CLOCKEVENTS */
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800217
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200218#endif /* _LINUX_CLOCKCHIPS_H */