2015-03-25 13:07:37 +01:00
|
|
|
/*
|
|
|
|
|
* Tick related global functions
|
2007-02-16 01:28:01 -08:00
|
|
|
*/
|
|
|
|
|
#ifndef _LINUX_TICK_H
|
|
|
|
|
#define _LINUX_TICK_H
|
|
|
|
|
|
|
|
|
|
#include <linux/clockchips.h>
|
2011-10-08 16:01:00 +02:00
|
|
|
#include <linux/irqflags.h>
|
2012-10-11 17:52:56 +02:00
|
|
|
#include <linux/percpu.h>
|
2013-07-24 23:52:27 +02:00
|
|
|
#include <linux/context_tracking_state.h>
|
|
|
|
|
#include <linux/cpumask.h>
|
2014-06-04 13:46:03 -07:00
|
|
|
#include <linux/sched.h>
|
2007-02-16 01:28:01 -08:00
|
|
|
|
2015-03-25 13:07:37 +01:00
|
|
|
#ifdef CONFIG_GENERIC_CLOCKEVENTS
|
|
|
|
|
extern void __init tick_init(void);
|
2015-02-13 23:50:43 +01:00
|
|
|
extern void tick_freeze(void);
|
|
|
|
|
extern void tick_unfreeze(void);
|
2015-03-25 13:11:52 +01:00
|
|
|
/* Should be core only, but ARM BL switcher requires it */
|
|
|
|
|
extern void tick_suspend_local(void);
|
|
|
|
|
/* Should be core only, but XEN resume magic and ARM BL switcher require it */
|
2015-03-25 13:11:04 +01:00
|
|
|
extern void tick_resume_local(void);
|
2015-04-03 02:37:24 +02:00
|
|
|
extern void tick_handover_do_timer(void);
|
2015-04-03 02:38:05 +02:00
|
|
|
extern void tick_cleanup_dead_cpu(int cpu);
|
2007-02-16 01:28:03 -08:00
|
|
|
#else /* CONFIG_GENERIC_CLOCKEVENTS */
|
2007-02-16 01:28:01 -08:00
|
|
|
static inline void tick_init(void) { }
|
2015-02-13 23:50:43 +01:00
|
|
|
static inline void tick_freeze(void) { }
|
|
|
|
|
static inline void tick_unfreeze(void) { }
|
2015-03-25 13:11:52 +01:00
|
|
|
static inline void tick_suspend_local(void) { }
|
2015-03-25 13:11:04 +01:00
|
|
|
static inline void tick_resume_local(void) { }
|
2015-04-03 02:37:24 +02:00
|
|
|
static inline void tick_handover_do_timer(void) { }
|
2015-04-03 02:38:05 +02:00
|
|
|
static inline void tick_cleanup_dead_cpu(int cpu) { }
|
2007-02-16 01:28:03 -08:00
|
|
|
#endif /* !CONFIG_GENERIC_CLOCKEVENTS */
|
2007-02-16 01:28:01 -08:00
|
|
|
|
2015-03-25 13:07:37 +01:00
|
|
|
#ifdef CONFIG_TICK_ONESHOT
|
|
|
|
|
extern void tick_irq_enter(void);
|
|
|
|
|
# ifndef arch_needs_cpu
|
|
|
|
|
# define arch_needs_cpu() (0)
|
|
|
|
|
# endif
|
|
|
|
|
# else
|
|
|
|
|
static inline void tick_irq_enter(void) { }
|
|
|
|
|
#endif
|
2012-10-11 17:52:56 +02:00
|
|
|
|
2015-03-30 14:59:19 +05:30
|
|
|
#if defined(CONFIG_GENERIC_CLOCKEVENTS_BROADCAST) && defined(CONFIG_TICK_ONESHOT)
|
|
|
|
|
extern void hotplug_cpu__broadcast_tick_pull(int dead_cpu);
|
|
|
|
|
#else
|
|
|
|
|
static inline void hotplug_cpu__broadcast_tick_pull(int dead_cpu) { }
|
|
|
|
|
#endif
|
|
|
|
|
|
2015-04-03 02:01:10 +02:00
|
|
|
enum tick_broadcast_mode {
|
|
|
|
|
TICK_BROADCAST_OFF,
|
|
|
|
|
TICK_BROADCAST_ON,
|
|
|
|
|
TICK_BROADCAST_FORCE,
|
|
|
|
|
};
|
|
|
|
|
|
2015-04-03 02:05:15 +02:00
|
|
|
enum tick_broadcast_state {
|
|
|
|
|
TICK_BROADCAST_EXIT,
|
|
|
|
|
TICK_BROADCAST_ENTER,
|
|
|
|
|
};
|
|
|
|
|
|
2015-04-03 02:01:10 +02:00
|
|
|
#ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
|
|
|
|
|
extern void tick_broadcast_control(enum tick_broadcast_mode mode);
|
|
|
|
|
#else
|
|
|
|
|
static inline void tick_broadcast_control(enum tick_broadcast_mode mode) { }
|
|
|
|
|
#endif /* BROADCAST */
|
|
|
|
|
|
2015-04-03 02:05:15 +02:00
|
|
|
#if defined(CONFIG_GENERIC_CLOCKEVENTS_BROADCAST) && defined(CONFIG_TICK_ONESHOT)
|
|
|
|
|
extern int tick_broadcast_oneshot_control(enum tick_broadcast_state state);
|
|
|
|
|
#else
|
|
|
|
|
static inline int tick_broadcast_oneshot_control(enum tick_broadcast_state state) { return 0; }
|
|
|
|
|
#endif
|
|
|
|
|
|
2015-04-03 02:01:10 +02:00
|
|
|
static inline void tick_broadcast_enable(void)
|
|
|
|
|
{
|
|
|
|
|
tick_broadcast_control(TICK_BROADCAST_ON);
|
|
|
|
|
}
|
|
|
|
|
static inline void tick_broadcast_disable(void)
|
|
|
|
|
{
|
|
|
|
|
tick_broadcast_control(TICK_BROADCAST_OFF);
|
|
|
|
|
}
|
|
|
|
|
static inline void tick_broadcast_force(void)
|
|
|
|
|
{
|
|
|
|
|
tick_broadcast_control(TICK_BROADCAST_FORCE);
|
|
|
|
|
}
|
2015-04-03 02:05:15 +02:00
|
|
|
static inline int tick_broadcast_enter(void)
|
|
|
|
|
{
|
|
|
|
|
return tick_broadcast_oneshot_control(TICK_BROADCAST_ENTER);
|
|
|
|
|
}
|
|
|
|
|
static inline void tick_broadcast_exit(void)
|
|
|
|
|
{
|
|
|
|
|
tick_broadcast_oneshot_control(TICK_BROADCAST_EXIT);
|
|
|
|
|
}
|
2015-04-03 02:01:10 +02:00
|
|
|
|
2015-03-25 13:07:37 +01:00
|
|
|
#ifdef CONFIG_NO_HZ_COMMON
|
|
|
|
|
extern int tick_nohz_tick_stopped(void);
|
2011-11-17 18:48:14 +01:00
|
|
|
extern void tick_nohz_idle_enter(void);
|
2011-10-07 18:22:06 +02:00
|
|
|
extern void tick_nohz_idle_exit(void);
|
|
|
|
|
extern void tick_nohz_irq_exit(void);
|
2007-10-03 18:58:00 -04:00
|
|
|
extern ktime_t tick_nohz_get_sleep_length(void);
|
2008-01-30 13:30:04 +01:00
|
|
|
extern u64 get_cpu_idle_time_us(int cpu, u64 *last_update_time);
|
2010-05-09 08:25:23 -07:00
|
|
|
extern u64 get_cpu_iowait_time_us(int cpu, u64 *last_update_time);
|
2015-03-25 13:07:37 +01:00
|
|
|
#else /* !CONFIG_NO_HZ_COMMON */
|
|
|
|
|
static inline int tick_nohz_tick_stopped(void) { return 0; }
|
2011-10-08 16:01:00 +02:00
|
|
|
static inline void tick_nohz_idle_enter(void) { }
|
|
|
|
|
static inline void tick_nohz_idle_exit(void) { }
|
2011-10-07 18:22:06 +02:00
|
|
|
|
2007-10-03 18:58:00 -04:00
|
|
|
static inline ktime_t tick_nohz_get_sleep_length(void)
|
|
|
|
|
{
|
|
|
|
|
ktime_t len = { .tv64 = NSEC_PER_SEC/HZ };
|
|
|
|
|
|
|
|
|
|
return len;
|
|
|
|
|
}
|
2008-08-04 11:59:11 -07:00
|
|
|
static inline u64 get_cpu_idle_time_us(int cpu, u64 *unused) { return -1; }
|
2010-05-09 08:25:23 -07:00
|
|
|
static inline u64 get_cpu_iowait_time_us(int cpu, u64 *unused) { return -1; }
|
2015-03-25 13:07:37 +01:00
|
|
|
#endif /* !CONFIG_NO_HZ_COMMON */
|
2007-02-16 01:28:01 -08:00
|
|
|
|
2013-04-12 16:45:34 +02:00
|
|
|
#ifdef CONFIG_NO_HZ_FULL
|
2013-07-24 23:52:27 +02:00
|
|
|
extern bool tick_nohz_full_running;
|
|
|
|
|
extern cpumask_var_t tick_nohz_full_mask;
|
2014-06-04 13:46:03 -07:00
|
|
|
extern cpumask_var_t housekeeping_mask;
|
2013-07-24 23:52:27 +02:00
|
|
|
|
|
|
|
|
static inline bool tick_nohz_full_enabled(void)
|
|
|
|
|
{
|
2013-11-06 14:45:57 +01:00
|
|
|
if (!context_tracking_is_enabled())
|
2013-07-24 23:52:27 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return tick_nohz_full_running;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline bool tick_nohz_full_cpu(int cpu)
|
|
|
|
|
{
|
|
|
|
|
if (!tick_nohz_full_enabled())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return cpumask_test_cpu(cpu, tick_nohz_full_mask);
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-24 23:52:27 +02:00
|
|
|
extern void __tick_nohz_full_check(void);
|
2014-08-13 18:50:16 +02:00
|
|
|
extern void tick_nohz_full_kick(void);
|
2014-06-04 16:17:33 +02:00
|
|
|
extern void tick_nohz_full_kick_cpu(int cpu);
|
2013-04-18 00:15:40 +02:00
|
|
|
extern void tick_nohz_full_kick_all(void);
|
2013-07-24 23:52:27 +02:00
|
|
|
extern void __tick_nohz_task_switch(struct task_struct *tsk);
|
2012-12-18 17:32:19 +01:00
|
|
|
#else
|
2013-07-24 23:52:27 +02:00
|
|
|
static inline bool tick_nohz_full_enabled(void) { return false; }
|
|
|
|
|
static inline bool tick_nohz_full_cpu(int cpu) { return false; }
|
2013-07-24 23:52:27 +02:00
|
|
|
static inline void __tick_nohz_full_check(void) { }
|
2014-06-04 16:17:33 +02:00
|
|
|
static inline void tick_nohz_full_kick_cpu(int cpu) { }
|
2013-04-18 00:15:40 +02:00
|
|
|
static inline void tick_nohz_full_kick(void) { }
|
|
|
|
|
static inline void tick_nohz_full_kick_all(void) { }
|
2013-07-24 23:52:27 +02:00
|
|
|
static inline void __tick_nohz_task_switch(struct task_struct *tsk) { }
|
2012-12-18 17:32:19 +01:00
|
|
|
#endif
|
|
|
|
|
|
2014-06-04 13:46:03 -07:00
|
|
|
static inline bool is_housekeeping_cpu(int cpu)
|
|
|
|
|
{
|
|
|
|
|
#ifdef CONFIG_NO_HZ_FULL
|
|
|
|
|
if (tick_nohz_full_enabled())
|
|
|
|
|
return cpumask_test_cpu(cpu, housekeeping_mask);
|
|
|
|
|
#endif
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void housekeeping_affine(struct task_struct *t)
|
|
|
|
|
{
|
|
|
|
|
#ifdef CONFIG_NO_HZ_FULL
|
|
|
|
|
if (tick_nohz_full_enabled())
|
|
|
|
|
set_cpus_allowed_ptr(t, housekeeping_mask);
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-24 23:52:27 +02:00
|
|
|
static inline void tick_nohz_full_check(void)
|
|
|
|
|
{
|
|
|
|
|
if (tick_nohz_full_enabled())
|
|
|
|
|
__tick_nohz_full_check();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void tick_nohz_task_switch(struct task_struct *tsk)
|
|
|
|
|
{
|
|
|
|
|
if (tick_nohz_full_enabled())
|
|
|
|
|
__tick_nohz_task_switch(tsk);
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-16 01:28:01 -08:00
|
|
|
#endif
|