Thomas Gleixner | f8381cb | 2007-02-16 01:28:02 -0800 | [diff] [blame] | 1 | /* |
| 2 | * tick internal variable and functions used by low/high res code |
| 3 | */ |
Torben Hohn | e2830b5 | 2011-01-27 16:00:32 +0100 | [diff] [blame] | 4 | #include <linux/hrtimer.h> |
| 5 | #include <linux/tick.h> |
Thomas Gleixner | 6441402 | 2008-09-22 18:46:37 +0200 | [diff] [blame] | 6 | |
Thomas Gleixner | eb93e4d | 2013-02-21 22:51:36 +0000 | [diff] [blame] | 7 | extern seqlock_t jiffies_lock; |
| 8 | |
Thomas Gleixner | 7cf37e8 | 2011-02-01 09:34:58 +0100 | [diff] [blame] | 9 | #ifdef CONFIG_GENERIC_CLOCKEVENTS_BUILD |
Thomas Gleixner | 6441402 | 2008-09-22 18:46:37 +0200 | [diff] [blame] | 10 | |
| 11 | #define TICK_DO_TIMER_NONE -1 |
| 12 | #define TICK_DO_TIMER_BOOT -2 |
| 13 | |
Thomas Gleixner | f8381cb | 2007-02-16 01:28:02 -0800 | [diff] [blame] | 14 | DECLARE_PER_CPU(struct tick_device, tick_cpu_device); |
Thomas Gleixner | f8381cb | 2007-02-16 01:28:02 -0800 | [diff] [blame] | 15 | extern ktime_t tick_next_period; |
| 16 | extern ktime_t tick_period; |
Thomas Gleixner | d3ed782 | 2007-05-08 00:30:03 -0700 | [diff] [blame] | 17 | extern int tick_do_timer_cpu __read_mostly; |
Thomas Gleixner | f8381cb | 2007-02-16 01:28:02 -0800 | [diff] [blame] | 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); |
Thomas Gleixner | e8d6303 | 2013-04-25 20:31:47 +0000 | [diff] [blame] | 21 | extern void tick_notify(unsigned long reason, void *dev); |
| 22 | extern void tick_check_new_device(struct clock_event_device *dev); |
Thomas Gleixner | f8381cb | 2007-02-16 01:28:02 -0800 | [diff] [blame] | 23 | |
Thomas Gleixner | 2344abb | 2008-09-16 11:32:50 -0700 | [diff] [blame] | 24 | extern void clockevents_shutdown(struct clock_event_device *dev); |
| 25 | |
Thomas Gleixner | f8381cb | 2007-02-16 01:28:02 -0800 | [diff] [blame] | 26 | /* |
Thomas Gleixner | 79bf2bb | 2007-02-16 01:28:03 -0800 | [diff] [blame] | 27 | * NO_HZ / high resolution timer shared code |
| 28 | */ |
| 29 | #ifdef CONFIG_TICK_ONESHOT |
| 30 | extern void tick_setup_oneshot(struct clock_event_device *newdev, |
| 31 | void (*handler)(struct clock_event_device *), |
| 32 | ktime_t nextevt); |
| 33 | extern int tick_program_event(ktime_t expires, int force); |
| 34 | extern void tick_oneshot_notify(void); |
| 35 | extern int tick_switch_to_oneshot(void (*handler)(struct clock_event_device *)); |
Thomas Gleixner | cd05a1f | 2007-03-17 00:25:52 +0100 | [diff] [blame] | 36 | extern void tick_resume_oneshot(void); |
Thomas Gleixner | 79bf2bb | 2007-02-16 01:28:03 -0800 | [diff] [blame] | 37 | # ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST |
| 38 | extern void tick_broadcast_setup_oneshot(struct clock_event_device *bc); |
| 39 | extern void tick_broadcast_oneshot_control(unsigned long reason); |
| 40 | extern void tick_broadcast_switch_to_oneshot(void); |
| 41 | extern void tick_shutdown_broadcast_oneshot(unsigned int *cpup); |
Thomas Gleixner | cd05a1f | 2007-03-17 00:25:52 +0100 | [diff] [blame] | 42 | extern int tick_resume_broadcast_oneshot(struct clock_event_device *bc); |
Thomas Gleixner | 27ce4cb | 2008-09-22 19:04:02 +0200 | [diff] [blame] | 43 | extern int tick_broadcast_oneshot_active(void); |
Thomas Gleixner | fb02fbc | 2008-10-17 10:01:23 +0200 | [diff] [blame] | 44 | extern void tick_check_oneshot_broadcast(int cpu); |
Thomas Gleixner | 3a142a0 | 2011-02-25 22:34:23 +0100 | [diff] [blame] | 45 | bool tick_broadcast_oneshot_available(void); |
Thomas Gleixner | 79bf2bb | 2007-02-16 01:28:03 -0800 | [diff] [blame] | 46 | # else /* BROADCAST */ |
| 47 | static inline void tick_broadcast_setup_oneshot(struct clock_event_device *bc) |
| 48 | { |
| 49 | BUG(); |
| 50 | } |
| 51 | static inline void tick_broadcast_oneshot_control(unsigned long reason) { } |
| 52 | static inline void tick_broadcast_switch_to_oneshot(void) { } |
| 53 | static inline void tick_shutdown_broadcast_oneshot(unsigned int *cpup) { } |
Thomas Gleixner | 27ce4cb | 2008-09-22 19:04:02 +0200 | [diff] [blame] | 54 | static inline int tick_broadcast_oneshot_active(void) { return 0; } |
Thomas Gleixner | fb02fbc | 2008-10-17 10:01:23 +0200 | [diff] [blame] | 55 | static inline void tick_check_oneshot_broadcast(int cpu) { } |
Thomas Gleixner | 3a142a0 | 2011-02-25 22:34:23 +0100 | [diff] [blame] | 56 | static inline bool tick_broadcast_oneshot_available(void) { return true; } |
Thomas Gleixner | 79bf2bb | 2007-02-16 01:28:03 -0800 | [diff] [blame] | 57 | # endif /* !BROADCAST */ |
| 58 | |
| 59 | #else /* !ONESHOT */ |
| 60 | static inline |
| 61 | void tick_setup_oneshot(struct clock_event_device *newdev, |
| 62 | void (*handler)(struct clock_event_device *), |
| 63 | ktime_t nextevt) |
| 64 | { |
| 65 | BUG(); |
| 66 | } |
Thomas Gleixner | cd05a1f | 2007-03-17 00:25:52 +0100 | [diff] [blame] | 67 | static inline void tick_resume_oneshot(void) |
| 68 | { |
| 69 | BUG(); |
| 70 | } |
Thomas Gleixner | 79bf2bb | 2007-02-16 01:28:03 -0800 | [diff] [blame] | 71 | static inline int tick_program_event(ktime_t expires, int force) |
| 72 | { |
| 73 | return 0; |
| 74 | } |
| 75 | static inline void tick_oneshot_notify(void) { } |
| 76 | static inline void tick_broadcast_setup_oneshot(struct clock_event_device *bc) |
| 77 | { |
| 78 | BUG(); |
| 79 | } |
| 80 | static inline void tick_broadcast_oneshot_control(unsigned long reason) { } |
| 81 | static inline void tick_shutdown_broadcast_oneshot(unsigned int *cpup) { } |
Thomas Gleixner | cd05a1f | 2007-03-17 00:25:52 +0100 | [diff] [blame] | 82 | static inline int tick_resume_broadcast_oneshot(struct clock_event_device *bc) |
| 83 | { |
| 84 | return 0; |
| 85 | } |
Ingo Molnar | f8e256c | 2008-09-23 13:00:57 +0200 | [diff] [blame] | 86 | static inline int tick_broadcast_oneshot_active(void) { return 0; } |
Thomas Gleixner | 3a142a0 | 2011-02-25 22:34:23 +0100 | [diff] [blame] | 87 | static inline bool tick_broadcast_oneshot_available(void) { return false; } |
Thomas Gleixner | 79bf2bb | 2007-02-16 01:28:03 -0800 | [diff] [blame] | 88 | #endif /* !TICK_ONESHOT */ |
| 89 | |
| 90 | /* |
Thomas Gleixner | f8381cb | 2007-02-16 01:28:02 -0800 | [diff] [blame] | 91 | * Broadcasting support |
| 92 | */ |
| 93 | #ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST |
Thomas Gleixner | f8381cb | 2007-02-16 01:28:02 -0800 | [diff] [blame] | 94 | extern int tick_device_uses_broadcast(struct clock_event_device *dev, int cpu); |
Thomas Gleixner | e8d6303 | 2013-04-25 20:31:47 +0000 | [diff] [blame] | 95 | extern void tick_install_broadcast_device(struct clock_event_device *dev); |
Thomas Gleixner | f8381cb | 2007-02-16 01:28:02 -0800 | [diff] [blame] | 96 | extern int tick_is_broadcast_device(struct clock_event_device *dev); |
| 97 | extern void tick_broadcast_on_off(unsigned long reason, int *oncpu); |
| 98 | extern void tick_shutdown_broadcast(unsigned int *cpup); |
Thomas Gleixner | 6321dd6 | 2007-03-06 08:25:42 +0100 | [diff] [blame] | 99 | extern void tick_suspend_broadcast(void); |
| 100 | extern int tick_resume_broadcast(void); |
Thomas Gleixner | b352bc1 | 2013-03-05 14:25:32 +0100 | [diff] [blame] | 101 | extern void tick_broadcast_init(void); |
Thomas Gleixner | f8381cb | 2007-02-16 01:28:02 -0800 | [diff] [blame] | 102 | extern void |
| 103 | tick_set_periodic_handler(struct clock_event_device *dev, int broadcast); |
| 104 | |
| 105 | #else /* !BROADCAST */ |
| 106 | |
Thomas Gleixner | e8d6303 | 2013-04-25 20:31:47 +0000 | [diff] [blame] | 107 | static inline void tick_install_broadcast_device(struct clock_event_device *dev) |
Thomas Gleixner | f8381cb | 2007-02-16 01:28:02 -0800 | [diff] [blame] | 108 | { |
Thomas Gleixner | f8381cb | 2007-02-16 01:28:02 -0800 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | static inline int tick_is_broadcast_device(struct clock_event_device *dev) |
| 112 | { |
| 113 | return 0; |
| 114 | } |
| 115 | static inline int tick_device_uses_broadcast(struct clock_event_device *dev, |
| 116 | int cpu) |
| 117 | { |
| 118 | return 0; |
| 119 | } |
| 120 | static inline void tick_do_periodic_broadcast(struct clock_event_device *d) { } |
| 121 | static inline void tick_broadcast_on_off(unsigned long reason, int *oncpu) { } |
| 122 | static inline void tick_shutdown_broadcast(unsigned int *cpup) { } |
Thomas Gleixner | 6321dd6 | 2007-03-06 08:25:42 +0100 | [diff] [blame] | 123 | static inline void tick_suspend_broadcast(void) { } |
| 124 | static inline int tick_resume_broadcast(void) { return 0; } |
Thomas Gleixner | b352bc1 | 2013-03-05 14:25:32 +0100 | [diff] [blame] | 125 | static inline void tick_broadcast_init(void) { } |
Thomas Gleixner | f8381cb | 2007-02-16 01:28:02 -0800 | [diff] [blame] | 126 | |
| 127 | /* |
| 128 | * Set the periodic handler in non broadcast mode |
| 129 | */ |
| 130 | static 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 | */ |
| 140 | static inline int tick_device_is_functional(struct clock_event_device *dev) |
| 141 | { |
| 142 | return !(dev->features & CLOCK_EVT_FEAT_DUMMY); |
| 143 | } |
Torben Hohn | e2830b5 | 2011-01-27 16:00:32 +0100 | [diff] [blame] | 144 | |
Thomas Gleixner | 7cf37e8 | 2011-02-01 09:34:58 +0100 | [diff] [blame] | 145 | #endif |
| 146 | |
Torben Hohn | e2830b5 | 2011-01-27 16:00:32 +0100 | [diff] [blame] | 147 | extern void do_timer(unsigned long ticks); |