blob: e312219ff8230bb8a4b8fad60ed4fc0e40a6afd3 [file] [log] [blame]
Thomas Gleixnerc1797ba2015-03-25 13:07:37 +01001/*
2 * Tick related global functions
Thomas Gleixner906568c2007-02-16 01:28:01 -08003 */
4#ifndef _LINUX_TICK_H
5#define _LINUX_TICK_H
6
7#include <linux/clockchips.h>
Frederic Weisbecker2bbb6812011-10-08 16:01:00 +02008#include <linux/irqflags.h>
Frederic Weisbecker33a5f622012-10-11 17:52:56 +02009#include <linux/percpu.h>
Frederic Weisbecker460775df2013-07-24 23:52:27 +020010#include <linux/context_tracking_state.h>
11#include <linux/cpumask.h>
Paul E. McKenneyc0f489d2014-06-04 13:46:03 -070012#include <linux/sched.h>
Thomas Gleixner906568c2007-02-16 01:28:01 -080013
Thomas Gleixnerc1797ba2015-03-25 13:07:37 +010014#ifdef CONFIG_GENERIC_CLOCKEVENTS
15extern void __init tick_init(void);
Thomas Gleixner7270d112015-03-25 13:11:52 +010016/* Should be core only, but ARM BL switcher requires it */
17extern void tick_suspend_local(void);
18/* Should be core only, but XEN resume magic and ARM BL switcher require it */
Thomas Gleixnerf46481d2015-03-25 13:11:04 +010019extern void tick_resume_local(void);
Thomas Gleixner52c063d2015-04-03 02:37:24 +020020extern void tick_handover_do_timer(void);
Thomas Gleixnera49b1162015-04-03 02:38:05 +020021extern void tick_cleanup_dead_cpu(int cpu);
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -080022#else /* CONFIG_GENERIC_CLOCKEVENTS */
Thomas Gleixner906568c2007-02-16 01:28:01 -080023static inline void tick_init(void) { }
Thomas Gleixner7270d112015-03-25 13:11:52 +010024static inline void tick_suspend_local(void) { }
Thomas Gleixnerf46481d2015-03-25 13:11:04 +010025static inline void tick_resume_local(void) { }
Thomas Gleixner52c063d2015-04-03 02:37:24 +020026static inline void tick_handover_do_timer(void) { }
Thomas Gleixnera49b1162015-04-03 02:38:05 +020027static inline void tick_cleanup_dead_cpu(int cpu) { }
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -080028#endif /* !CONFIG_GENERIC_CLOCKEVENTS */
Thomas Gleixner906568c2007-02-16 01:28:01 -080029
Rafael J. Wysocki87e9b9f2015-05-16 01:38:15 +020030#if defined(CONFIG_GENERIC_CLOCKEVENTS) && defined(CONFIG_SUSPEND)
31extern void tick_freeze(void);
32extern void tick_unfreeze(void);
33#else
34static inline void tick_freeze(void) { }
35static inline void tick_unfreeze(void) { }
36#endif
37
Thomas Gleixnerc1797ba2015-03-25 13:07:37 +010038#ifdef CONFIG_TICK_ONESHOT
39extern void tick_irq_enter(void);
40# ifndef arch_needs_cpu
41# define arch_needs_cpu() (0)
42# endif
43# else
44static inline void tick_irq_enter(void) { }
45#endif
Frederic Weisbecker33a5f622012-10-11 17:52:56 +020046
Preeti U Murthy345527b2015-03-30 14:59:19 +053047#if defined(CONFIG_GENERIC_CLOCKEVENTS_BROADCAST) && defined(CONFIG_TICK_ONESHOT)
48extern void hotplug_cpu__broadcast_tick_pull(int dead_cpu);
49#else
50static inline void hotplug_cpu__broadcast_tick_pull(int dead_cpu) { }
51#endif
52
Thomas Gleixner592a4382015-04-03 02:01:10 +020053enum tick_broadcast_mode {
54 TICK_BROADCAST_OFF,
55 TICK_BROADCAST_ON,
56 TICK_BROADCAST_FORCE,
57};
58
Thomas Gleixner1fe5d5c32015-04-03 02:05:15 +020059enum tick_broadcast_state {
60 TICK_BROADCAST_EXIT,
61 TICK_BROADCAST_ENTER,
62};
63
Thomas Gleixner592a4382015-04-03 02:01:10 +020064#ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
65extern void tick_broadcast_control(enum tick_broadcast_mode mode);
66#else
67static inline void tick_broadcast_control(enum tick_broadcast_mode mode) { }
68#endif /* BROADCAST */
69
Thomas Gleixner37b64a42015-07-07 21:56:34 +020070#ifdef CONFIG_GENERIC_CLOCKEVENTS
Thomas Gleixner1fe5d5c32015-04-03 02:05:15 +020071extern int tick_broadcast_oneshot_control(enum tick_broadcast_state state);
Thomas Gleixner37b64a42015-07-07 21:56:34 +020072#else
73static inline int tick_broadcast_oneshot_control(enum tick_broadcast_state state)
74{
75 return 0;
76}
77#endif
Thomas Gleixner1fe5d5c32015-04-03 02:05:15 +020078
Thomas Gleixner592a4382015-04-03 02:01:10 +020079static inline void tick_broadcast_enable(void)
80{
81 tick_broadcast_control(TICK_BROADCAST_ON);
82}
83static inline void tick_broadcast_disable(void)
84{
85 tick_broadcast_control(TICK_BROADCAST_OFF);
86}
87static inline void tick_broadcast_force(void)
88{
89 tick_broadcast_control(TICK_BROADCAST_FORCE);
90}
Thomas Gleixner1fe5d5c32015-04-03 02:05:15 +020091static inline int tick_broadcast_enter(void)
92{
93 return tick_broadcast_oneshot_control(TICK_BROADCAST_ENTER);
94}
95static inline void tick_broadcast_exit(void)
96{
97 tick_broadcast_oneshot_control(TICK_BROADCAST_EXIT);
98}
Thomas Gleixner592a4382015-04-03 02:01:10 +020099
Thomas Gleixnerc1797ba2015-03-25 13:07:37 +0100100#ifdef CONFIG_NO_HZ_COMMON
101extern int tick_nohz_tick_stopped(void);
Frederic Weisbecker1268fbc2011-11-17 18:48:14 +0100102extern void tick_nohz_idle_enter(void);
Frederic Weisbecker280f0672011-10-07 18:22:06 +0200103extern void tick_nohz_idle_exit(void);
104extern void tick_nohz_irq_exit(void);
Len Brown4f86d3a2007-10-03 18:58:00 -0400105extern ktime_t tick_nohz_get_sleep_length(void);
Venki Pallipadi6378ddb2008-01-30 13:30:04 +0100106extern u64 get_cpu_idle_time_us(int cpu, u64 *last_update_time);
Arjan van de Ven0224cf42010-05-09 08:25:23 -0700107extern u64 get_cpu_iowait_time_us(int cpu, u64 *last_update_time);
Thomas Gleixnerc1797ba2015-03-25 13:07:37 +0100108#else /* !CONFIG_NO_HZ_COMMON */
109static inline int tick_nohz_tick_stopped(void) { return 0; }
Frederic Weisbecker2bbb6812011-10-08 16:01:00 +0200110static inline void tick_nohz_idle_enter(void) { }
111static inline void tick_nohz_idle_exit(void) { }
Frederic Weisbecker280f0672011-10-07 18:22:06 +0200112
Len Brown4f86d3a2007-10-03 18:58:00 -0400113static inline ktime_t tick_nohz_get_sleep_length(void)
114{
115 ktime_t len = { .tv64 = NSEC_PER_SEC/HZ };
116
117 return len;
118}
venkatesh.pallipadi@intel.com8083e4a2008-08-04 11:59:11 -0700119static inline u64 get_cpu_idle_time_us(int cpu, u64 *unused) { return -1; }
Arjan van de Ven0224cf42010-05-09 08:25:23 -0700120static inline u64 get_cpu_iowait_time_us(int cpu, u64 *unused) { return -1; }
Thomas Gleixnerc1797ba2015-03-25 13:07:37 +0100121#endif /* !CONFIG_NO_HZ_COMMON */
Thomas Gleixner906568c2007-02-16 01:28:01 -0800122
Frederic Weisbeckerc5bfece2013-04-12 16:45:34 +0200123#ifdef CONFIG_NO_HZ_FULL
Frederic Weisbecker460775df2013-07-24 23:52:27 +0200124extern bool tick_nohz_full_running;
125extern cpumask_var_t tick_nohz_full_mask;
Paul E. McKenneyc0f489d2014-06-04 13:46:03 -0700126extern cpumask_var_t housekeeping_mask;
Frederic Weisbecker460775df2013-07-24 23:52:27 +0200127
128static inline bool tick_nohz_full_enabled(void)
129{
Frederic Weisbecker58135f52013-11-06 14:45:57 +0100130 if (!context_tracking_is_enabled())
Frederic Weisbecker460775df2013-07-24 23:52:27 +0200131 return false;
132
133 return tick_nohz_full_running;
134}
135
136static inline bool tick_nohz_full_cpu(int cpu)
137{
138 if (!tick_nohz_full_enabled())
139 return false;
140
141 return cpumask_test_cpu(cpu, tick_nohz_full_mask);
142}
143
Chris Metcalf83dedea2015-05-06 18:04:25 +0200144static inline void tick_nohz_full_add_cpus_to(struct cpumask *mask)
145{
146 if (tick_nohz_full_enabled())
147 cpumask_or(mask, mask, tick_nohz_full_mask);
148}
149
Vatika Harlalka9642d182015-09-01 16:50:59 +0200150static inline int housekeeping_any_cpu(void)
151{
152 return cpumask_any_and(housekeeping_mask, cpu_online_mask);
153}
154
Frederic Weisbecker40bea032014-08-13 18:50:16 +0200155extern void tick_nohz_full_kick(void);
Frederic Weisbecker3d36aeb2014-06-04 16:17:33 +0200156extern void tick_nohz_full_kick_cpu(int cpu);
Frederic Weisbecker76c24fb2013-04-18 00:15:40 +0200157extern void tick_nohz_full_kick_all(void);
Frederic Weisbeckerde734f82015-06-11 18:07:12 +0200158extern void __tick_nohz_task_switch(void);
Frederic Weisbeckera8318812012-12-18 17:32:19 +0100159#else
Vatika Harlalka9642d182015-09-01 16:50:59 +0200160static inline int housekeeping_any_cpu(void)
161{
162 return smp_processor_id();
163}
Frederic Weisbecker460775df2013-07-24 23:52:27 +0200164static inline bool tick_nohz_full_enabled(void) { return false; }
165static inline bool tick_nohz_full_cpu(int cpu) { return false; }
Chris Metcalf83dedea2015-05-06 18:04:25 +0200166static inline void tick_nohz_full_add_cpus_to(struct cpumask *mask) { }
Frederic Weisbecker3d36aeb2014-06-04 16:17:33 +0200167static inline void tick_nohz_full_kick_cpu(int cpu) { }
Frederic Weisbecker76c24fb2013-04-18 00:15:40 +0200168static inline void tick_nohz_full_kick(void) { }
169static inline void tick_nohz_full_kick_all(void) { }
Frederic Weisbeckerde734f82015-06-11 18:07:12 +0200170static inline void __tick_nohz_task_switch(void) { }
Frederic Weisbeckera8318812012-12-18 17:32:19 +0100171#endif
172
Chris Metcalf03f61992015-07-10 15:37:25 -0400173static inline const struct cpumask *housekeeping_cpumask(void)
174{
175#ifdef CONFIG_NO_HZ_FULL
176 if (tick_nohz_full_enabled())
177 return housekeeping_mask;
178#endif
179 return cpu_possible_mask;
180}
181
Paul E. McKenneyc0f489d2014-06-04 13:46:03 -0700182static inline bool is_housekeeping_cpu(int cpu)
183{
184#ifdef CONFIG_NO_HZ_FULL
185 if (tick_nohz_full_enabled())
186 return cpumask_test_cpu(cpu, housekeeping_mask);
187#endif
188 return true;
189}
190
191static inline void housekeeping_affine(struct task_struct *t)
192{
193#ifdef CONFIG_NO_HZ_FULL
194 if (tick_nohz_full_enabled())
195 set_cpus_allowed_ptr(t, housekeeping_mask);
196
197#endif
198}
199
Frederic Weisbeckerde734f82015-06-11 18:07:12 +0200200static inline void tick_nohz_task_switch(void)
Frederic Weisbeckerd13508f2013-07-24 23:52:27 +0200201{
202 if (tick_nohz_full_enabled())
Frederic Weisbeckerde734f82015-06-11 18:07:12 +0200203 __tick_nohz_task_switch();
Frederic Weisbeckerd13508f2013-07-24 23:52:27 +0200204}
205
Thomas Gleixner906568c2007-02-16 01:28:01 -0800206#endif