Merge branch 'master' into queue
[deliverable/linux.git] / include / linux / clockchips.h
CommitLineData
d316c57f
TG
1/* 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
de68d9b1 11#ifdef CONFIG_GENERIC_CLOCKEVENTS_BUILD
d316c57f
TG
12
13#include <linux/clocksource.h>
14#include <linux/cpumask.h>
15#include <linux/ktime.h>
16#include <linux/notifier.h>
17
18struct clock_event_device;
19
20/* Clock event mode commands */
21enum clock_event_mode {
22 CLOCK_EVT_MODE_UNUSED = 0,
23 CLOCK_EVT_MODE_SHUTDOWN,
24 CLOCK_EVT_MODE_PERIODIC,
25 CLOCK_EVT_MODE_ONESHOT,
18de5bc4 26 CLOCK_EVT_MODE_RESUME,
d316c57f
TG
27};
28
29/* Clock event notification values */
30enum clock_event_nofitiers {
31 CLOCK_EVT_NOTIFY_ADD,
32 CLOCK_EVT_NOTIFY_BROADCAST_ON,
33 CLOCK_EVT_NOTIFY_BROADCAST_OFF,
1595f452 34 CLOCK_EVT_NOTIFY_BROADCAST_FORCE,
d316c57f
TG
35 CLOCK_EVT_NOTIFY_BROADCAST_ENTER,
36 CLOCK_EVT_NOTIFY_BROADCAST_EXIT,
37 CLOCK_EVT_NOTIFY_SUSPEND,
38 CLOCK_EVT_NOTIFY_RESUME,
94df7de0 39 CLOCK_EVT_NOTIFY_CPU_DYING,
d316c57f
TG
40 CLOCK_EVT_NOTIFY_CPU_DEAD,
41};
42
43/*
44 * Clock event features
45 */
46#define CLOCK_EVT_FEAT_PERIODIC 0x000001
47#define CLOCK_EVT_FEAT_ONESHOT 0x000002
65516f8a 48#define CLOCK_EVT_FEAT_KTIME 0x000004
d316c57f
TG
49/*
50 * x86(64) specific misfeatures:
51 *
52 * - Clockevent source stops in C3 State and needs broadcast support.
53 * - Local APIC timer is used as a dummy device.
54 */
65516f8a
MS
55#define CLOCK_EVT_FEAT_C3STOP 0x000008
56#define CLOCK_EVT_FEAT_DUMMY 0x000010
d316c57f
TG
57
58/**
59 * struct clock_event_device - clock event device descriptor
847b2f42
TG
60 * @event_handler: Assigned by the framework to be called by the low
61 * level handler of the event source
65516f8a
MS
62 * @set_next_event: set next event function using a clocksource delta
63 * @set_next_ktime: set next event function using a direct ktime value
847b2f42 64 * @next_event: local storage for the next event in oneshot mode
d316c57f
TG
65 * @max_delta_ns: maximum delta value in ns
66 * @min_delta_ns: minimum delta value in ns
67 * @mult: nanosecond to cycles multiplier
68 * @shift: nanoseconds to cycles divisor (power of two)
847b2f42
TG
69 * @mode: operating mode assigned by the management code
70 * @features: features
71 * @retries: number of forced programming retries
72 * @set_mode: set mode function
73 * @broadcast: function to broadcast events
57f0fcbe
TG
74 * @min_delta_ticks: minimum delta value in ticks stored for reconfiguration
75 * @max_delta_ticks: maximum delta value in ticks stored for reconfiguration
847b2f42 76 * @name: ptr to clock event name
d316c57f 77 * @rating: variable to rate clock event devices
ce0be127
SS
78 * @irq: IRQ number (only for non CPU local devices)
79 * @cpumask: cpumask to indicate for which CPUs this device works
d316c57f 80 * @list: list head for the management code
d316c57f
TG
81 */
82struct clock_event_device {
847b2f42
TG
83 void (*event_handler)(struct clock_event_device *);
84 int (*set_next_event)(unsigned long evt,
85 struct clock_event_device *);
65516f8a
MS
86 int (*set_next_ktime)(ktime_t expires,
87 struct clock_event_device *);
847b2f42 88 ktime_t next_event;
97813f2f
JH
89 u64 max_delta_ns;
90 u64 min_delta_ns;
23af368e
TG
91 u32 mult;
92 u32 shift;
847b2f42
TG
93 enum clock_event_mode mode;
94 unsigned int features;
95 unsigned long retries;
96
97 void (*broadcast)(const struct cpumask *mask);
98 void (*set_mode)(enum clock_event_mode mode,
99 struct clock_event_device *);
adc78e6b
RW
100 void (*suspend)(struct clock_event_device *);
101 void (*resume)(struct clock_event_device *);
57f0fcbe
TG
102 unsigned long min_delta_ticks;
103 unsigned long max_delta_ticks;
104
847b2f42 105 const char *name;
d316c57f
TG
106 int rating;
107 int irq;
320ab2b0 108 const struct cpumask *cpumask;
d316c57f 109 struct list_head list;
847b2f42 110} ____cacheline_aligned;
d316c57f
TG
111
112/*
113 * Calculate a multiplication factor for scaled math, which is used to convert
114 * nanoseconds based values to clock ticks:
115 *
116 * clock_ticks = (nanoseconds * factor) >> shift.
117 *
118 * div_sc is the rearranged equation to calculate a factor from a given clock
119 * ticks / nanoseconds ratio:
120 *
121 * factor = (clock_ticks << shift) / nanoseconds
122 */
123static inline unsigned long div_sc(unsigned long ticks, unsigned long nsec,
124 int shift)
125{
126 uint64_t tmp = ((uint64_t)ticks) << shift;
127
128 do_div(tmp, nsec);
129 return (unsigned long) tmp;
130}
131
132/* Clock event layer functions */
97813f2f
JH
133extern u64 clockevent_delta2ns(unsigned long latch,
134 struct clock_event_device *evt);
d316c57f
TG
135extern void clockevents_register_device(struct clock_event_device *dev);
136
e5400321 137extern void clockevents_config(struct clock_event_device *dev, u32 freq);
57f0fcbe
TG
138extern void clockevents_config_and_register(struct clock_event_device *dev,
139 u32 freq, unsigned long min_delta,
140 unsigned long max_delta);
141
80b816b7
TG
142extern int clockevents_update_freq(struct clock_event_device *ce, u32 freq);
143
d316c57f
TG
144extern void clockevents_exchange_device(struct clock_event_device *old,
145 struct clock_event_device *new);
d316c57f
TG
146extern void clockevents_set_mode(struct clock_event_device *dev,
147 enum clock_event_mode mode);
148extern int clockevents_register_notifier(struct notifier_block *nb);
d316c57f 149extern int clockevents_program_event(struct clock_event_device *dev,
d1748302 150 ktime_t expires, bool force);
d316c57f 151
7c1e7689
VP
152extern void clockevents_handle_noop(struct clock_event_device *dev);
153
7d2f944a
TG
154static inline void
155clockevents_calc_mult_shift(struct clock_event_device *ce, u32 freq, u32 minsec)
156{
157 return clocks_calc_mult_shift(&ce->mult, &ce->shift, NSEC_PER_SEC,
158 freq, minsec);
159}
160
adc78e6b
RW
161extern void clockevents_suspend(void);
162extern void clockevents_resume(void);
163
12572dbb 164#ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
12ad1000
MR
165#ifdef CONFIG_ARCH_HAS_TICK_BROADCAST
166extern void tick_broadcast(const struct cpumask *mask);
167#else
168#define tick_broadcast NULL
169#endif
12572dbb
MR
170extern int tick_receive_broadcast(void);
171#endif
172
de68d9b1 173#ifdef CONFIG_GENERIC_CLOCKEVENTS
d316c57f 174extern void clockevents_notify(unsigned long reason, void *arg);
d316c57f 175#else
de68d9b1
TG
176# define clockevents_notify(reason, arg) do { } while (0)
177#endif
178
179#else /* CONFIG_GENERIC_CLOCKEVENTS_BUILD */
d316c57f 180
adc78e6b
RW
181static inline void clockevents_suspend(void) {}
182static inline void clockevents_resume(void) {}
183
d316c57f
TG
184#define clockevents_notify(reason, arg) do { } while (0)
185
186#endif
187
188#endif
This page took 0.529913 seconds and 5 git commands to generate.