Merge branch 'for-3.16' of git://linux-nfs.org/~bfields/linux
[deliverable/linux.git] / kernel / time / tick-internal.h
CommitLineData
f8381cba
TG
1/*
2 * tick internal variable and functions used by low/high res code
3 */
e2830b5c
TH
4#include <linux/hrtimer.h>
5#include <linux/tick.h>
6441402b 6
eb93e4d9
TG
7extern seqlock_t jiffies_lock;
8
c7e99fc7
TG
9#define CS_NAME_LEN 32
10
7cf37e87 11#ifdef CONFIG_GENERIC_CLOCKEVENTS_BUILD
6441402b
TG
12
13#define TICK_DO_TIMER_NONE -1
14#define TICK_DO_TIMER_BOOT -2
15
f8381cba 16DECLARE_PER_CPU(struct tick_device, tick_cpu_device);
f8381cba
TG
17extern ktime_t tick_next_period;
18extern ktime_t tick_period;
d3ed7824 19extern int tick_do_timer_cpu __read_mostly;
f8381cba
TG
20
21extern void tick_setup_periodic(struct clock_event_device *dev, int broadcast);
22extern void tick_handle_periodic(struct clock_event_device *dev);
7172a286 23extern void tick_check_new_device(struct clock_event_device *dev);
8c53daf6
TG
24extern void tick_handover_do_timer(int *cpup);
25extern void tick_shutdown(unsigned int *cpup);
26extern void tick_suspend(void);
27extern void tick_resume(void);
03e13cf5
TG
28extern bool tick_check_replacement(struct clock_event_device *curdev,
29 struct clock_event_device *newdev);
30extern void tick_install_replacement(struct clock_event_device *dev);
f8381cba 31
2344abbc
TG
32extern void clockevents_shutdown(struct clock_event_device *dev);
33
891292a7 34extern ssize_t sysfs_get_uname(const char *buf, char *dst, size_t cnt);
03e13cf5 35
79bf2bb3
TG
36/*
37 * NO_HZ / high resolution timer shared code
38 */
39#ifdef CONFIG_TICK_ONESHOT
40extern void tick_setup_oneshot(struct clock_event_device *newdev,
41 void (*handler)(struct clock_event_device *),
42 ktime_t nextevt);
43extern int tick_program_event(ktime_t expires, int force);
44extern void tick_oneshot_notify(void);
45extern int tick_switch_to_oneshot(void (*handler)(struct clock_event_device *));
cd05a1f8 46extern void tick_resume_oneshot(void);
79bf2bb3
TG
47# ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
48extern void tick_broadcast_setup_oneshot(struct clock_event_device *bc);
da7e6f45 49extern int tick_broadcast_oneshot_control(unsigned long reason);
79bf2bb3
TG
50extern void tick_broadcast_switch_to_oneshot(void);
51extern void tick_shutdown_broadcast_oneshot(unsigned int *cpup);
cd05a1f8 52extern int tick_resume_broadcast_oneshot(struct clock_event_device *bc);
27ce4cb4 53extern int tick_broadcast_oneshot_active(void);
e8fcaa5c 54extern void tick_check_oneshot_broadcast_this_cpu(void);
3a142a06 55bool tick_broadcast_oneshot_available(void);
79bf2bb3
TG
56# else /* BROADCAST */
57static inline void tick_broadcast_setup_oneshot(struct clock_event_device *bc)
58{
59 BUG();
60}
da7e6f45 61static inline int tick_broadcast_oneshot_control(unsigned long reason) { return 0; }
79bf2bb3
TG
62static inline void tick_broadcast_switch_to_oneshot(void) { }
63static inline void tick_shutdown_broadcast_oneshot(unsigned int *cpup) { }
27ce4cb4 64static inline int tick_broadcast_oneshot_active(void) { return 0; }
e8fcaa5c 65static inline void tick_check_oneshot_broadcast_this_cpu(void) { }
3a142a06 66static inline bool tick_broadcast_oneshot_available(void) { return true; }
79bf2bb3
TG
67# endif /* !BROADCAST */
68
69#else /* !ONESHOT */
70static inline
71void tick_setup_oneshot(struct clock_event_device *newdev,
72 void (*handler)(struct clock_event_device *),
73 ktime_t nextevt)
74{
75 BUG();
76}
cd05a1f8
TG
77static inline void tick_resume_oneshot(void)
78{
79 BUG();
80}
79bf2bb3
TG
81static inline int tick_program_event(ktime_t expires, int force)
82{
83 return 0;
84}
85static inline void tick_oneshot_notify(void) { }
86static inline void tick_broadcast_setup_oneshot(struct clock_event_device *bc)
87{
88 BUG();
89}
da7e6f45 90static inline int tick_broadcast_oneshot_control(unsigned long reason) { return 0; }
79bf2bb3 91static inline void tick_shutdown_broadcast_oneshot(unsigned int *cpup) { }
cd05a1f8
TG
92static inline int tick_resume_broadcast_oneshot(struct clock_event_device *bc)
93{
94 return 0;
95}
f8e256c6 96static inline int tick_broadcast_oneshot_active(void) { return 0; }
3a142a06 97static inline bool tick_broadcast_oneshot_available(void) { return false; }
79bf2bb3
TG
98#endif /* !TICK_ONESHOT */
99
f8381cba
TG
100/*
101 * Broadcasting support
102 */
103#ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
f8381cba 104extern int tick_device_uses_broadcast(struct clock_event_device *dev, int cpu);
7172a286 105extern void tick_install_broadcast_device(struct clock_event_device *dev);
f8381cba
TG
106extern int tick_is_broadcast_device(struct clock_event_device *dev);
107extern void tick_broadcast_on_off(unsigned long reason, int *oncpu);
108extern void tick_shutdown_broadcast(unsigned int *cpup);
6321dd60
TG
109extern void tick_suspend_broadcast(void);
110extern int tick_resume_broadcast(void);
b352bc1c 111extern void tick_broadcast_init(void);
f8381cba
TG
112extern void
113tick_set_periodic_handler(struct clock_event_device *dev, int broadcast);
627ee794 114int tick_broadcast_update_freq(struct clock_event_device *dev, u32 freq);
f8381cba
TG
115
116#else /* !BROADCAST */
117
7172a286 118static inline void tick_install_broadcast_device(struct clock_event_device *dev)
f8381cba 119{
f8381cba
TG
120}
121
122static inline int tick_is_broadcast_device(struct clock_event_device *dev)
123{
124 return 0;
125}
126static inline int tick_device_uses_broadcast(struct clock_event_device *dev,
127 int cpu)
128{
129 return 0;
130}
131static inline void tick_do_periodic_broadcast(struct clock_event_device *d) { }
132static inline void tick_broadcast_on_off(unsigned long reason, int *oncpu) { }
133static inline void tick_shutdown_broadcast(unsigned int *cpup) { }
6321dd60
TG
134static inline void tick_suspend_broadcast(void) { }
135static inline int tick_resume_broadcast(void) { return 0; }
b352bc1c 136static inline void tick_broadcast_init(void) { }
627ee794
TG
137static inline int tick_broadcast_update_freq(struct clock_event_device *dev,
138 u32 freq) { return -ENODEV; }
f8381cba
TG
139
140/*
141 * Set the periodic handler in non broadcast mode
142 */
143static inline void tick_set_periodic_handler(struct clock_event_device *dev,
144 int broadcast)
145{
146 dev->event_handler = tick_handle_periodic;
147}
148#endif /* !BROADCAST */
149
150/*
151 * Check, if the device is functional or a dummy for broadcast
152 */
153static inline int tick_device_is_functional(struct clock_event_device *dev)
154{
155 return !(dev->features & CLOCK_EVT_FEAT_DUMMY);
156}
e2830b5c 157
f1689bb7
TG
158int __clockevents_update_freq(struct clock_event_device *dev, u32 freq);
159
7cf37e87
TG
160#endif
161
e2830b5c 162extern void do_timer(unsigned long ticks);
47a1b796 163extern void update_wall_time(void);
This page took 0.900525 seconds and 5 git commands to generate.