blob: 60742fe6f63de49e3e1d5e8c87dadfb7c7198e11 [file] [log] [blame]
Thomas Gleixnerf8381cb2007-02-16 01:28:02 -08001/*
2 * tick internal variable and functions used by low/high res code
3 */
Torben Hohne2830b52011-01-27 16:00:32 +01004#include <linux/hrtimer.h>
5#include <linux/tick.h>
Thomas Gleixner64414022008-09-22 18:46:37 +02006
Thomas Gleixnereb93e4d2013-02-21 22:51:36 +00007extern seqlock_t jiffies_lock;
8
Thomas Gleixner7cf37e82011-02-01 09:34:58 +01009#ifdef CONFIG_GENERIC_CLOCKEVENTS_BUILD
Thomas Gleixner64414022008-09-22 18:46:37 +020010
11#define TICK_DO_TIMER_NONE -1
12#define TICK_DO_TIMER_BOOT -2
13
Thomas Gleixnerf8381cb2007-02-16 01:28:02 -080014DECLARE_PER_CPU(struct tick_device, tick_cpu_device);
Thomas Gleixnerf8381cb2007-02-16 01:28:02 -080015extern ktime_t tick_next_period;
16extern ktime_t tick_period;
Thomas Gleixnerd3ed7822007-05-08 00:30:03 -070017extern int tick_do_timer_cpu __read_mostly;
Thomas Gleixnerf8381cb2007-02-16 01:28:02 -080018
19extern void tick_setup_periodic(struct clock_event_device *dev, int broadcast);
20extern void tick_handle_periodic(struct clock_event_device *dev);
Thomas Gleixnere8d63032013-04-25 20:31:47 +000021extern void tick_notify(unsigned long reason, void *dev);
22extern void tick_check_new_device(struct clock_event_device *dev);
Thomas Gleixnerf8381cb2007-02-16 01:28:02 -080023
Thomas Gleixner2344abb2008-09-16 11:32:50 -070024extern void clockevents_shutdown(struct clock_event_device *dev);
25
Thomas Gleixnerf8381cb2007-02-16 01:28:02 -080026/*
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -080027 * NO_HZ / high resolution timer shared code
28 */
29#ifdef CONFIG_TICK_ONESHOT
30extern void tick_setup_oneshot(struct clock_event_device *newdev,
31 void (*handler)(struct clock_event_device *),
32 ktime_t nextevt);
33extern int tick_program_event(ktime_t expires, int force);
34extern void tick_oneshot_notify(void);
35extern int tick_switch_to_oneshot(void (*handler)(struct clock_event_device *));
Thomas Gleixnercd05a1f2007-03-17 00:25:52 +010036extern void tick_resume_oneshot(void);
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -080037# ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
38extern void tick_broadcast_setup_oneshot(struct clock_event_device *bc);
39extern void tick_broadcast_oneshot_control(unsigned long reason);
40extern void tick_broadcast_switch_to_oneshot(void);
41extern void tick_shutdown_broadcast_oneshot(unsigned int *cpup);
Thomas Gleixnercd05a1f2007-03-17 00:25:52 +010042extern int tick_resume_broadcast_oneshot(struct clock_event_device *bc);
Thomas Gleixner27ce4cb2008-09-22 19:04:02 +020043extern int tick_broadcast_oneshot_active(void);
Thomas Gleixnerfb02fbc2008-10-17 10:01:23 +020044extern void tick_check_oneshot_broadcast(int cpu);
Thomas Gleixner3a142a02011-02-25 22:34:23 +010045bool tick_broadcast_oneshot_available(void);
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -080046# else /* BROADCAST */
47static inline void tick_broadcast_setup_oneshot(struct clock_event_device *bc)
48{
49 BUG();
50}
51static inline void tick_broadcast_oneshot_control(unsigned long reason) { }
52static inline void tick_broadcast_switch_to_oneshot(void) { }
53static inline void tick_shutdown_broadcast_oneshot(unsigned int *cpup) { }
Thomas Gleixner27ce4cb2008-09-22 19:04:02 +020054static inline int tick_broadcast_oneshot_active(void) { return 0; }
Thomas Gleixnerfb02fbc2008-10-17 10:01:23 +020055static inline void tick_check_oneshot_broadcast(int cpu) { }
Thomas Gleixner3a142a02011-02-25 22:34:23 +010056static inline bool tick_broadcast_oneshot_available(void) { return true; }
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -080057# endif /* !BROADCAST */
58
59#else /* !ONESHOT */
60static inline
61void tick_setup_oneshot(struct clock_event_device *newdev,
62 void (*handler)(struct clock_event_device *),
63 ktime_t nextevt)
64{
65 BUG();
66}
Thomas Gleixnercd05a1f2007-03-17 00:25:52 +010067static inline void tick_resume_oneshot(void)
68{
69 BUG();
70}
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -080071static inline int tick_program_event(ktime_t expires, int force)
72{
73 return 0;
74}
75static inline void tick_oneshot_notify(void) { }
76static inline void tick_broadcast_setup_oneshot(struct clock_event_device *bc)
77{
78 BUG();
79}
80static inline void tick_broadcast_oneshot_control(unsigned long reason) { }
81static inline void tick_shutdown_broadcast_oneshot(unsigned int *cpup) { }
Thomas Gleixnercd05a1f2007-03-17 00:25:52 +010082static inline int tick_resume_broadcast_oneshot(struct clock_event_device *bc)
83{
84 return 0;
85}
Ingo Molnarf8e256c2008-09-23 13:00:57 +020086static inline int tick_broadcast_oneshot_active(void) { return 0; }
Thomas Gleixner3a142a02011-02-25 22:34:23 +010087static inline bool tick_broadcast_oneshot_available(void) { return false; }
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -080088#endif /* !TICK_ONESHOT */
89
90/*
Thomas Gleixnerf8381cb2007-02-16 01:28:02 -080091 * Broadcasting support
92 */
93#ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
Thomas Gleixnerf8381cb2007-02-16 01:28:02 -080094extern int tick_device_uses_broadcast(struct clock_event_device *dev, int cpu);
Thomas Gleixnere8d63032013-04-25 20:31:47 +000095extern void tick_install_broadcast_device(struct clock_event_device *dev);
Thomas Gleixnerf8381cb2007-02-16 01:28:02 -080096extern int tick_is_broadcast_device(struct clock_event_device *dev);
97extern void tick_broadcast_on_off(unsigned long reason, int *oncpu);
98extern void tick_shutdown_broadcast(unsigned int *cpup);
Thomas Gleixner6321dd62007-03-06 08:25:42 +010099extern void tick_suspend_broadcast(void);
100extern int tick_resume_broadcast(void);
Thomas Gleixnerb352bc12013-03-05 14:25:32 +0100101extern void tick_broadcast_init(void);
Thomas Gleixnerf8381cb2007-02-16 01:28:02 -0800102extern void
103tick_set_periodic_handler(struct clock_event_device *dev, int broadcast);
104
105#else /* !BROADCAST */
106
Thomas Gleixnere8d63032013-04-25 20:31:47 +0000107static inline void tick_install_broadcast_device(struct clock_event_device *dev)
Thomas Gleixnerf8381cb2007-02-16 01:28:02 -0800108{
Thomas Gleixnerf8381cb2007-02-16 01:28:02 -0800109}
110
111static inline int tick_is_broadcast_device(struct clock_event_device *dev)
112{
113 return 0;
114}
115static inline int tick_device_uses_broadcast(struct clock_event_device *dev,
116 int cpu)
117{
118 return 0;
119}
120static inline void tick_do_periodic_broadcast(struct clock_event_device *d) { }
121static inline void tick_broadcast_on_off(unsigned long reason, int *oncpu) { }
122static inline void tick_shutdown_broadcast(unsigned int *cpup) { }
Thomas Gleixner6321dd62007-03-06 08:25:42 +0100123static inline void tick_suspend_broadcast(void) { }
124static inline int tick_resume_broadcast(void) { return 0; }
Thomas Gleixnerb352bc12013-03-05 14:25:32 +0100125static inline void tick_broadcast_init(void) { }
Thomas Gleixnerf8381cb2007-02-16 01:28:02 -0800126
127/*
128 * Set the periodic handler in non broadcast mode
129 */
130static inline void tick_set_periodic_handler(struct clock_event_device *dev,
131 int broadcast)
132{
133 dev->event_handler = tick_handle_periodic;
134}
135#endif /* !BROADCAST */
136
137/*
138 * Check, if the device is functional or a dummy for broadcast
139 */
140static inline int tick_device_is_functional(struct clock_event_device *dev)
141{
142 return !(dev->features & CLOCK_EVT_FEAT_DUMMY);
143}
Torben Hohne2830b52011-01-27 16:00:32 +0100144
Thomas Gleixner7cf37e82011-02-01 09:34:58 +0100145#endif
146
Torben Hohne2830b52011-01-27 16:00:32 +0100147extern void do_timer(unsigned long ticks);