• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * tick internal variable and functions used by low/high res code
3  */
4 #include <linux/hrtimer.h>
5 #include <linux/tick.h>
6 
7 extern seqlock_t jiffies_lock;
8 
9 #ifdef CONFIG_GENERIC_CLOCKEVENTS_BUILD
10 
11 #define TICK_DO_TIMER_NONE	-1
12 #define TICK_DO_TIMER_BOOT	-2
13 
14 DECLARE_PER_CPU(struct tick_device, tick_cpu_device);
15 extern ktime_t tick_next_period;
16 extern ktime_t tick_period;
17 extern int tick_do_timer_cpu __read_mostly;
18 
19 extern void tick_setup_periodic(struct clock_event_device *dev, int broadcast);
20 extern void tick_handle_periodic(struct clock_event_device *dev);
21 
22 extern void clockevents_shutdown(struct clock_event_device *dev);
23 
24 /*
25  * NO_HZ / high resolution timer shared code
26  */
27 #ifdef CONFIG_TICK_ONESHOT
28 extern void tick_setup_oneshot(struct clock_event_device *newdev,
29 			       void (*handler)(struct clock_event_device *),
30 			       ktime_t nextevt);
31 extern int tick_program_event(ktime_t expires, int force);
32 extern void tick_oneshot_notify(void);
33 extern int tick_switch_to_oneshot(void (*handler)(struct clock_event_device *));
34 extern void tick_resume_oneshot(void);
35 # ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
36 extern void tick_broadcast_setup_oneshot(struct clock_event_device *bc);
37 extern void tick_broadcast_oneshot_control(unsigned long reason);
38 extern void tick_broadcast_switch_to_oneshot(void);
39 extern void tick_shutdown_broadcast_oneshot(unsigned int *cpup);
40 extern int tick_resume_broadcast_oneshot(struct clock_event_device *bc);
41 extern int tick_broadcast_oneshot_active(void);
42 extern void tick_check_oneshot_broadcast(int cpu);
43 bool tick_broadcast_oneshot_available(void);
44 # else /* BROADCAST */
tick_broadcast_setup_oneshot(struct clock_event_device * bc)45 static inline void tick_broadcast_setup_oneshot(struct clock_event_device *bc)
46 {
47 	BUG();
48 }
tick_broadcast_oneshot_control(unsigned long reason)49 static inline void tick_broadcast_oneshot_control(unsigned long reason) { }
tick_broadcast_switch_to_oneshot(void)50 static inline void tick_broadcast_switch_to_oneshot(void) { }
tick_shutdown_broadcast_oneshot(unsigned int * cpup)51 static inline void tick_shutdown_broadcast_oneshot(unsigned int *cpup) { }
tick_broadcast_oneshot_active(void)52 static inline int tick_broadcast_oneshot_active(void) { return 0; }
tick_check_oneshot_broadcast(int cpu)53 static inline void tick_check_oneshot_broadcast(int cpu) { }
tick_broadcast_oneshot_available(void)54 static inline bool tick_broadcast_oneshot_available(void) { return true; }
55 # endif /* !BROADCAST */
56 
57 #else /* !ONESHOT */
58 static inline
tick_setup_oneshot(struct clock_event_device * newdev,void (* handler)(struct clock_event_device *),ktime_t nextevt)59 void tick_setup_oneshot(struct clock_event_device *newdev,
60 			void (*handler)(struct clock_event_device *),
61 			ktime_t nextevt)
62 {
63 	BUG();
64 }
tick_resume_oneshot(void)65 static inline void tick_resume_oneshot(void)
66 {
67 	BUG();
68 }
tick_program_event(ktime_t expires,int force)69 static inline int tick_program_event(ktime_t expires, int force)
70 {
71 	return 0;
72 }
tick_oneshot_notify(void)73 static inline void tick_oneshot_notify(void) { }
tick_broadcast_setup_oneshot(struct clock_event_device * bc)74 static inline void tick_broadcast_setup_oneshot(struct clock_event_device *bc)
75 {
76 	BUG();
77 }
tick_broadcast_oneshot_control(unsigned long reason)78 static inline void tick_broadcast_oneshot_control(unsigned long reason) { }
tick_shutdown_broadcast_oneshot(unsigned int * cpup)79 static inline void tick_shutdown_broadcast_oneshot(unsigned int *cpup) { }
tick_resume_broadcast_oneshot(struct clock_event_device * bc)80 static inline int tick_resume_broadcast_oneshot(struct clock_event_device *bc)
81 {
82 	return 0;
83 }
tick_broadcast_oneshot_active(void)84 static inline int tick_broadcast_oneshot_active(void) { return 0; }
tick_broadcast_oneshot_available(void)85 static inline bool tick_broadcast_oneshot_available(void) { return false; }
86 #endif /* !TICK_ONESHOT */
87 
88 /*
89  * Broadcasting support
90  */
91 #ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
92 extern int tick_device_uses_broadcast(struct clock_event_device *dev, int cpu);
93 extern int tick_check_broadcast_device(struct clock_event_device *dev);
94 extern int tick_is_broadcast_device(struct clock_event_device *dev);
95 extern void tick_broadcast_on_off(unsigned long reason, int *oncpu);
96 extern void tick_shutdown_broadcast(unsigned int *cpup);
97 extern void tick_suspend_broadcast(void);
98 extern int tick_resume_broadcast(void);
99 extern void tick_broadcast_init(void);
100 extern void
101 tick_set_periodic_handler(struct clock_event_device *dev, int broadcast);
102 
103 #else /* !BROADCAST */
104 
tick_check_broadcast_device(struct clock_event_device * dev)105 static inline int tick_check_broadcast_device(struct clock_event_device *dev)
106 {
107 	return 0;
108 }
109 
tick_is_broadcast_device(struct clock_event_device * dev)110 static inline int tick_is_broadcast_device(struct clock_event_device *dev)
111 {
112 	return 0;
113 }
tick_device_uses_broadcast(struct clock_event_device * dev,int cpu)114 static inline int tick_device_uses_broadcast(struct clock_event_device *dev,
115 					     int cpu)
116 {
117 	return 0;
118 }
tick_do_periodic_broadcast(struct clock_event_device * d)119 static inline void tick_do_periodic_broadcast(struct clock_event_device *d) { }
tick_broadcast_on_off(unsigned long reason,int * oncpu)120 static inline void tick_broadcast_on_off(unsigned long reason, int *oncpu) { }
tick_shutdown_broadcast(unsigned int * cpup)121 static inline void tick_shutdown_broadcast(unsigned int *cpup) { }
tick_suspend_broadcast(void)122 static inline void tick_suspend_broadcast(void) { }
tick_resume_broadcast(void)123 static inline int tick_resume_broadcast(void) { return 0; }
tick_broadcast_init(void)124 static inline void tick_broadcast_init(void) { }
125 
126 /*
127  * Set the periodic handler in non broadcast mode
128  */
tick_set_periodic_handler(struct clock_event_device * dev,int broadcast)129 static inline void tick_set_periodic_handler(struct clock_event_device *dev,
130 					     int broadcast)
131 {
132 	dev->event_handler = tick_handle_periodic;
133 }
134 #endif /* !BROADCAST */
135 
136 /*
137  * Check, if the device is functional or a dummy for broadcast
138  */
tick_device_is_functional(struct clock_event_device * dev)139 static inline int tick_device_is_functional(struct clock_event_device *dev)
140 {
141 	return !(dev->features & CLOCK_EVT_FEAT_DUMMY);
142 }
143 
144 #endif
145 
146 extern void do_timer(unsigned long ticks);
147