tick.h 3.8 KB
Newer Older
1 2
/*
 * Tick related global functions
3 4 5 6 7
 */
#ifndef _LINUX_TICK_H
#define _LINUX_TICK_H

#include <linux/clockchips.h>
8
#include <linux/irqflags.h>
9
#include <linux/percpu.h>
10 11
#include <linux/context_tracking_state.h>
#include <linux/cpumask.h>
12
#include <linux/sched.h>
13

14 15
#ifdef CONFIG_GENERIC_CLOCKEVENTS
extern void __init tick_init(void);
16 17
extern void tick_freeze(void);
extern void tick_unfreeze(void);
18 19 20
/* 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 */
21
extern void tick_resume_local(void);
22 23 24 25
#else /* CONFIG_GENERIC_CLOCKEVENTS */
static inline void tick_init(void) { }
static inline void tick_freeze(void) { }
static inline void tick_unfreeze(void) { }
26
static inline void tick_suspend_local(void) { }
27
static inline void tick_resume_local(void) { }
28
#endif /* !CONFIG_GENERIC_CLOCKEVENTS */
29

30
#ifdef CONFIG_TICK_ONESHOT
31
extern void tick_irq_enter(void);
32
#  ifndef arch_needs_cpu
33
#   define arch_needs_cpu() (0)
34
#  endif
35
# else
36
static inline void tick_irq_enter(void) { }
37
#endif
38

39 40 41 42 43 44
#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

45 46
#ifdef CONFIG_NO_HZ_COMMON
extern int tick_nohz_tick_stopped(void);
47
extern void tick_nohz_idle_enter(void);
48 49
extern void tick_nohz_idle_exit(void);
extern void tick_nohz_irq_exit(void);
50
extern ktime_t tick_nohz_get_sleep_length(void);
51
extern u64 get_cpu_idle_time_us(int cpu, u64 *last_update_time);
52
extern u64 get_cpu_iowait_time_us(int cpu, u64 *last_update_time);
53 54
#else /* !CONFIG_NO_HZ_COMMON */
static inline int tick_nohz_tick_stopped(void) { return 0; }
55 56
static inline void tick_nohz_idle_enter(void) { }
static inline void tick_nohz_idle_exit(void) { }
57

58 59 60 61 62 63
static inline ktime_t tick_nohz_get_sleep_length(void)
{
	ktime_t len = { .tv64 = NSEC_PER_SEC/HZ };

	return len;
}
64
static inline u64 get_cpu_idle_time_us(int cpu, u64 *unused) { return -1; }
65
static inline u64 get_cpu_iowait_time_us(int cpu, u64 *unused) { return -1; }
66
#endif /* !CONFIG_NO_HZ_COMMON */
67

68
#ifdef CONFIG_NO_HZ_FULL
69 70
extern bool tick_nohz_full_running;
extern cpumask_var_t tick_nohz_full_mask;
71
extern cpumask_var_t housekeeping_mask;
72 73 74

static inline bool tick_nohz_full_enabled(void)
{
75
	if (!context_tracking_is_enabled())
76 77 78 79 80 81 82 83 84 85 86 87 88
		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);
}

89
extern void __tick_nohz_full_check(void);
90
extern void tick_nohz_full_kick(void);
91
extern void tick_nohz_full_kick_cpu(int cpu);
92
extern void tick_nohz_full_kick_all(void);
93
extern void __tick_nohz_task_switch(struct task_struct *tsk);
94
#else
95 96
static inline bool tick_nohz_full_enabled(void) { return false; }
static inline bool tick_nohz_full_cpu(int cpu) { return false; }
97
static inline void __tick_nohz_full_check(void) { }
98
static inline void tick_nohz_full_kick_cpu(int cpu) { }
99 100
static inline void tick_nohz_full_kick(void) { }
static inline void tick_nohz_full_kick_all(void) { }
101
static inline void __tick_nohz_task_switch(struct task_struct *tsk) { }
102 103
#endif

104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
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
}

122 123 124 125 126 127 128 129 130 131 132 133
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);
}

134
#endif