blob: caeca76d7b32224c4ab847270c2591eb5e2d2ca9 [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
Daniel Lezcano4dbad812013-03-27 10:22:09 +000011/* Clock event notification values */
12enum clock_event_nofitiers {
13 CLOCK_EVT_NOTIFY_ADD,
14 CLOCK_EVT_NOTIFY_BROADCAST_ON,
15 CLOCK_EVT_NOTIFY_BROADCAST_OFF,
16 CLOCK_EVT_NOTIFY_BROADCAST_FORCE,
17 CLOCK_EVT_NOTIFY_BROADCAST_ENTER,
18 CLOCK_EVT_NOTIFY_BROADCAST_EXIT,
Daniel Lezcano4dbad812013-03-27 10:22:09 +000019 CLOCK_EVT_NOTIFY_CPU_DYING,
20 CLOCK_EVT_NOTIFY_CPU_DEAD,
21};
22
Thomas Gleixner9f083b72015-03-25 13:05:19 +010023#ifdef CONFIG_GENERIC_CLOCKEVENTS
Thomas Gleixnerd316c572007-02-16 01:28:00 -080024
Ingo Molnar9eed56e2015-04-02 11:26:23 +020025# include <linux/clocksource.h>
26# include <linux/cpumask.h>
27# include <linux/ktime.h>
28# include <linux/notifier.h>
Thomas Gleixnerd316c572007-02-16 01:28:00 -080029
30struct clock_event_device;
Thomas Gleixnerccf33d62013-04-25 20:31:49 +000031struct module;
Thomas Gleixnerd316c572007-02-16 01:28:00 -080032
Viresh Kumar77e32c82015-02-27 17:21:33 +053033/* Clock event mode commands for legacy ->set_mode(): OBSOLETE */
Thomas Gleixnerd316c572007-02-16 01:28:00 -080034enum clock_event_mode {
Ingo Molnar9eed56e2015-04-02 11:26:23 +020035 CLOCK_EVT_MODE_UNUSED,
Thomas Gleixnerd316c572007-02-16 01:28:00 -080036 CLOCK_EVT_MODE_SHUTDOWN,
37 CLOCK_EVT_MODE_PERIODIC,
38 CLOCK_EVT_MODE_ONESHOT,
Thomas Gleixner18de5bc2007-07-21 04:37:34 -070039 CLOCK_EVT_MODE_RESUME,
Viresh Kumar77e32c82015-02-27 17:21:33 +053040};
Viresh Kumarbd624d72015-02-13 08:54:56 +080041
Viresh Kumar77e32c82015-02-27 17:21:33 +053042/*
43 * Possible states of a clock event device.
44 *
45 * DETACHED: Device is not used by clockevents core. Initial state or can be
46 * reached from SHUTDOWN.
47 * SHUTDOWN: Device is powered-off. Can be reached from PERIODIC or ONESHOT.
48 * PERIODIC: Device is programmed to generate events periodically. Can be
49 * reached from DETACHED or SHUTDOWN.
50 * ONESHOT: Device is programmed to generate event only once. Can be reached
51 * from DETACHED or SHUTDOWN.
52 */
53enum clock_event_state {
Ingo Molnar9eed56e2015-04-02 11:26:23 +020054 CLOCK_EVT_STATE_DETACHED,
Viresh Kumar77e32c82015-02-27 17:21:33 +053055 CLOCK_EVT_STATE_SHUTDOWN,
56 CLOCK_EVT_STATE_PERIODIC,
57 CLOCK_EVT_STATE_ONESHOT,
Thomas Gleixnerd316c572007-02-16 01:28:00 -080058};
59
Thomas Gleixnerd316c572007-02-16 01:28:00 -080060/*
61 * Clock event features
62 */
Ingo Molnar9eed56e2015-04-02 11:26:23 +020063# define CLOCK_EVT_FEAT_PERIODIC 0x000001
64# define CLOCK_EVT_FEAT_ONESHOT 0x000002
65# define CLOCK_EVT_FEAT_KTIME 0x000004
66
Thomas Gleixnerd316c572007-02-16 01:28:00 -080067/*
Ingo Molnar9eed56e2015-04-02 11:26:23 +020068 * x86(64) specific (mis)features:
Thomas Gleixnerd316c572007-02-16 01:28:00 -080069 *
70 * - Clockevent source stops in C3 State and needs broadcast support.
71 * - Local APIC timer is used as a dummy device.
72 */
Ingo Molnar9eed56e2015-04-02 11:26:23 +020073# define CLOCK_EVT_FEAT_C3STOP 0x000008
74# define CLOCK_EVT_FEAT_DUMMY 0x000010
Thomas Gleixnerd316c572007-02-16 01:28:00 -080075
Daniel Lezcanod2348fb2013-03-02 11:10:11 +010076/*
77 * Core shall set the interrupt affinity dynamically in broadcast mode
78 */
Ingo Molnar9eed56e2015-04-02 11:26:23 +020079# define CLOCK_EVT_FEAT_DYNIRQ 0x000020
80# define CLOCK_EVT_FEAT_PERCPU 0x000040
Daniel Lezcanod2348fb2013-03-02 11:10:11 +010081
Preeti U Murthy5d1638a2014-02-07 13:36:32 +053082/*
83 * Clockevent device is based on a hrtimer for broadcast
84 */
Ingo Molnar9eed56e2015-04-02 11:26:23 +020085# define CLOCK_EVT_FEAT_HRTIMER 0x000080
Preeti U Murthy5d1638a2014-02-07 13:36:32 +053086
Thomas Gleixnerd316c572007-02-16 01:28:00 -080087/**
88 * struct clock_event_device - clock event device descriptor
Thomas Gleixner847b2f42011-05-18 21:33:41 +000089 * @event_handler: Assigned by the framework to be called by the low
90 * level handler of the event source
Martin Schwidefsky65516f82011-08-23 15:29:43 +020091 * @set_next_event: set next event function using a clocksource delta
92 * @set_next_ktime: set next event function using a direct ktime value
Thomas Gleixner847b2f42011-05-18 21:33:41 +000093 * @next_event: local storage for the next event in oneshot mode
Thomas Gleixnerd316c572007-02-16 01:28:00 -080094 * @max_delta_ns: maximum delta value in ns
95 * @min_delta_ns: minimum delta value in ns
96 * @mult: nanosecond to cycles multiplier
97 * @shift: nanoseconds to cycles divisor (power of two)
Viresh Kumar77e32c82015-02-27 17:21:33 +053098 * @mode: operating mode, relevant only to ->set_mode(), OBSOLETE
99 * @state: current state of the device, assigned by the core code
Thomas Gleixner847b2f42011-05-18 21:33:41 +0000100 * @features: features
101 * @retries: number of forced programming retries
Viresh Kumarbd624d72015-02-13 08:54:56 +0800102 * @set_mode: legacy set mode function, only for modes <= CLOCK_EVT_MODE_RESUME.
Viresh Kumar77e32c82015-02-27 17:21:33 +0530103 * @set_state_periodic: switch state to periodic, if !set_mode
104 * @set_state_oneshot: switch state to oneshot, if !set_mode
105 * @set_state_shutdown: switch state to shutdown, if !set_mode
Viresh Kumar554ef382015-02-27 17:21:32 +0530106 * @tick_resume: resume clkevt device, if !set_mode
Thomas Gleixner847b2f42011-05-18 21:33:41 +0000107 * @broadcast: function to broadcast events
Thomas Gleixner57f0fcb2011-05-18 21:33:41 +0000108 * @min_delta_ticks: minimum delta value in ticks stored for reconfiguration
109 * @max_delta_ticks: maximum delta value in ticks stored for reconfiguration
Thomas Gleixner847b2f42011-05-18 21:33:41 +0000110 * @name: ptr to clock event name
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800111 * @rating: variable to rate clock event devices
Sergei Shtylyovce0be122007-05-08 00:31:55 -0700112 * @irq: IRQ number (only for non CPU local devices)
Preeti U Murthy5d1638a2014-02-07 13:36:32 +0530113 * @bound_on: Bound on CPU
Sergei Shtylyovce0be122007-05-08 00:31:55 -0700114 * @cpumask: cpumask to indicate for which CPUs this device works
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800115 * @list: list head for the management code
Thomas Gleixnerccf33d62013-04-25 20:31:49 +0000116 * @owner: module reference
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800117 */
118struct clock_event_device {
Thomas Gleixner847b2f42011-05-18 21:33:41 +0000119 void (*event_handler)(struct clock_event_device *);
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200120 int (*set_next_event)(unsigned long evt, struct clock_event_device *);
121 int (*set_next_ktime)(ktime_t expires, struct clock_event_device *);
Thomas Gleixner847b2f42011-05-18 21:33:41 +0000122 ktime_t next_event;
Jon Hunter97813f22009-08-18 12:45:11 -0500123 u64 max_delta_ns;
124 u64 min_delta_ns;
Thomas Gleixner23af3682009-11-11 14:05:25 +0000125 u32 mult;
126 u32 shift;
Thomas Gleixner847b2f42011-05-18 21:33:41 +0000127 enum clock_event_mode mode;
Viresh Kumar77e32c82015-02-27 17:21:33 +0530128 enum clock_event_state state;
Thomas Gleixner847b2f42011-05-18 21:33:41 +0000129 unsigned int features;
130 unsigned long retries;
131
Viresh Kumarbd624d72015-02-13 08:54:56 +0800132 /*
Viresh Kumar77e32c82015-02-27 17:21:33 +0530133 * State transition callback(s): Only one of the two groups should be
Viresh Kumarbd624d72015-02-13 08:54:56 +0800134 * defined:
135 * - set_mode(), only for modes <= CLOCK_EVT_MODE_RESUME.
Viresh Kumar77e32c82015-02-27 17:21:33 +0530136 * - set_state_{shutdown|periodic|oneshot}(), tick_resume().
Viresh Kumarbd624d72015-02-13 08:54:56 +0800137 */
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200138 void (*set_mode)(enum clock_event_mode mode, struct clock_event_device *);
Viresh Kumar77e32c82015-02-27 17:21:33 +0530139 int (*set_state_periodic)(struct clock_event_device *);
140 int (*set_state_oneshot)(struct clock_event_device *);
141 int (*set_state_shutdown)(struct clock_event_device *);
Viresh Kumar554ef382015-02-27 17:21:32 +0530142 int (*tick_resume)(struct clock_event_device *);
Viresh Kumarbd624d72015-02-13 08:54:56 +0800143
144 void (*broadcast)(const struct cpumask *mask);
Rafael J. Wysockiadc78e62012-08-06 01:40:41 +0200145 void (*suspend)(struct clock_event_device *);
146 void (*resume)(struct clock_event_device *);
Thomas Gleixner57f0fcb2011-05-18 21:33:41 +0000147 unsigned long min_delta_ticks;
148 unsigned long max_delta_ticks;
149
Thomas Gleixner847b2f42011-05-18 21:33:41 +0000150 const char *name;
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800151 int rating;
152 int irq;
Preeti U Murthy5d1638a2014-02-07 13:36:32 +0530153 int bound_on;
Rusty Russell320ab2b2008-12-13 21:20:26 +1030154 const struct cpumask *cpumask;
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800155 struct list_head list;
Thomas Gleixnerccf33d62013-04-25 20:31:49 +0000156 struct module *owner;
Thomas Gleixner847b2f42011-05-18 21:33:41 +0000157} ____cacheline_aligned;
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800158
159/*
160 * Calculate a multiplication factor for scaled math, which is used to convert
161 * nanoseconds based values to clock ticks:
162 *
163 * clock_ticks = (nanoseconds * factor) >> shift.
164 *
165 * div_sc is the rearranged equation to calculate a factor from a given clock
166 * ticks / nanoseconds ratio:
167 *
168 * factor = (clock_ticks << shift) / nanoseconds
169 */
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200170static inline unsigned long
171div_sc(unsigned long ticks, unsigned long nsec, int shift)
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800172{
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200173 u64 tmp = ((u64)ticks) << shift;
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800174
175 do_div(tmp, nsec);
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200176
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800177 return (unsigned long) tmp;
178}
179
180/* Clock event layer functions */
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200181extern u64 clockevent_delta2ns(unsigned long latch, struct clock_event_device *evt);
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800182extern void clockevents_register_device(struct clock_event_device *dev);
Thomas Gleixner03e13cf2013-04-25 20:31:50 +0000183extern int clockevents_unbind_device(struct clock_event_device *ced, int cpu);
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800184
Magnus Damme5400322012-05-09 23:39:34 +0900185extern void clockevents_config(struct clock_event_device *dev, u32 freq);
Thomas Gleixner57f0fcb2011-05-18 21:33:41 +0000186extern void clockevents_config_and_register(struct clock_event_device *dev,
187 u32 freq, unsigned long min_delta,
188 unsigned long max_delta);
189
Thomas Gleixner80b816b2011-05-18 21:33:42 +0000190extern int clockevents_update_freq(struct clock_event_device *ce, u32 freq);
191
Thomas Gleixner7d2f9442009-11-11 14:05:29 +0000192static inline void
193clockevents_calc_mult_shift(struct clock_event_device *ce, u32 freq, u32 minsec)
194{
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200195 return clocks_calc_mult_shift(&ce->mult, &ce->shift, NSEC_PER_SEC, freq, minsec);
Thomas Gleixner7d2f9442009-11-11 14:05:29 +0000196}
197
Rafael J. Wysockiadc78e62012-08-06 01:40:41 +0200198extern void clockevents_suspend(void);
199extern void clockevents_resume(void);
200
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200201# ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
202# ifdef CONFIG_ARCH_HAS_TICK_BROADCAST
Mark Rutland12ad1002013-01-14 17:05:22 +0000203extern void tick_broadcast(const struct cpumask *mask);
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200204# else
205# define tick_broadcast NULL
206# endif
Mark Rutland12572db2013-01-14 17:05:21 +0000207extern int tick_receive_broadcast(void);
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200208# endif
Mark Rutland12572db2013-01-14 17:05:21 +0000209
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200210# if defined(CONFIG_GENERIC_CLOCKEVENTS_BROADCAST) && defined(CONFIG_TICK_ONESHOT)
Preeti U Murthy5d1638a2014-02-07 13:36:32 +0530211extern void tick_setup_hrtimer_broadcast(void);
Thomas Gleixnereaa907c2013-03-06 11:18:36 +0000212extern int tick_check_broadcast_expired(void);
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200213# else
Thomas Gleixnereaa907c2013-03-06 11:18:36 +0000214static inline int tick_check_broadcast_expired(void) { return 0; }
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200215static inline void tick_setup_hrtimer_broadcast(void) { }
216# endif
Thomas Gleixnereaa907c2013-03-06 11:18:36 +0000217
Preeti U Murthyda7e6f42014-02-07 13:36:06 +0530218extern int clockevents_notify(unsigned long reason, void *arg);
Thomas Gleixnerde68d9b2007-10-12 23:04:05 +0200219
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200220#else /* !CONFIG_GENERIC_CLOCKEVENTS: */
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800221
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200222static inline void clockevents_suspend(void) { }
223static inline void clockevents_resume(void) { }
Preeti U Murthyda7e6f42014-02-07 13:36:06 +0530224static inline int clockevents_notify(unsigned long reason, void *arg) { return 0; }
Thomas Gleixner19919222013-03-22 10:48:33 +0100225static inline int tick_check_broadcast_expired(void) { return 0; }
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200226static inline void tick_setup_hrtimer_broadcast(void) { }
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800227
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200228#endif /* !CONFIG_GENERIC_CLOCKEVENTS */
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800229
Ingo Molnar9eed56e2015-04-02 11:26:23 +0200230#endif /* _LINUX_CLOCKCHIPS_H */