]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - kernel/time/tick-internal.h
Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc
[mirror_ubuntu-bionic-kernel.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);
49extern void tick_broadcast_oneshot_control(unsigned long reason);
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);
fb02fbc1 54extern void tick_check_oneshot_broadcast(int cpu);
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}
61static inline void tick_broadcast_oneshot_control(unsigned long reason) { }
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; }
fb02fbc1 65static inline void tick_check_oneshot_broadcast(int cpu) { }
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}
90static inline void tick_broadcast_oneshot_control(unsigned long reason) { }
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);
114
115#else /* !BROADCAST */
116
7172a286 117static inline void tick_install_broadcast_device(struct clock_event_device *dev)
f8381cba 118{
f8381cba
TG
119}
120
121static inline int tick_is_broadcast_device(struct clock_event_device *dev)
122{
123 return 0;
124}
125static inline int tick_device_uses_broadcast(struct clock_event_device *dev,
126 int cpu)
127{
128 return 0;
129}
130static inline void tick_do_periodic_broadcast(struct clock_event_device *d) { }
131static inline void tick_broadcast_on_off(unsigned long reason, int *oncpu) { }
132static inline void tick_shutdown_broadcast(unsigned int *cpup) { }
6321dd60
TG
133static inline void tick_suspend_broadcast(void) { }
134static inline int tick_resume_broadcast(void) { return 0; }
b352bc1c 135static inline void tick_broadcast_init(void) { }
f8381cba
TG
136
137/*
138 * Set the periodic handler in non broadcast mode
139 */
140static inline void tick_set_periodic_handler(struct clock_event_device *dev,
141 int broadcast)
142{
143 dev->event_handler = tick_handle_periodic;
144}
145#endif /* !BROADCAST */
146
147/*
148 * Check, if the device is functional or a dummy for broadcast
149 */
150static inline int tick_device_is_functional(struct clock_event_device *dev)
151{
152 return !(dev->features & CLOCK_EVT_FEAT_DUMMY);
153}
e2830b5c 154
7cf37e87
TG
155#endif
156
e2830b5c 157extern void do_timer(unsigned long ticks);